We are having trouble with a deploy step of an Azure Function App using Azure DevOps and Azure.
Our repository is in Azure DevOps in a private project. But our application is an HTTP trigger Function App, in .NET Core v2.
I'm not able to deploy an app in a Function App with consumption plan, due to a 500 error on Kudu service.
You are able to see release debug information inside this log: task.log. And just the exception stack trace: exception.log.
We face this issue last week and are facing it again. A workaround was creating a new app and updating it's deploy task to this new app.
Looks like the site (fa...ml) is setup with continuous integration with VSTS with Kudu as a build server which was conflicting with VSTS build and zip-deploy. Try below for mitigation.
Hi @suwatch, thanks for the response.
I have noticed that our source was Kudu, then I've disconnected it on deployment center, then readd our deployment task on release pipeline, to run again to enforce TFSGit. Finally, the source changed to Azure Repos again (deployment center screen), and our relese is running again.
i changed deployment type from "zip deploy" to "web deploy". this fixed this issue for me. seems that the webapp could not download the zip file via kudu (FAILED TO DOWNLOAD ZIP FILE.txt has been created)
Please open a new gissue.
Most helpful comment
Looks like the site (fa...ml) is setup with continuous integration with VSTS with Kudu as a build server which was conflicting with VSTS build and zip-deploy. Try below for mitigation.