Questions tagged [kudu]

Kudu allows git push deployment for .net based web projects.

Although it was developed to deploy .net web projects to the Microsoft Azure Cloud it can also be used outside from Azure to deploy on premises IIS.

Wiki: https://github.com/projectkudu/kudu/wiki Forum: http://social.msdn.microsoft.com/Forums/en-US/azuregit/threads

428 questions
9
votes
2 answers

Azure WebJobs SDK ServiceBus connection string 'AzureWebJobsAzureSBConnection' is missing or empty

I created an Azure Function App in Visual Studio 2015. The App has a trigger for service bus queues. The app works perfectly when I run it locally. It is able to read the data from the Service Bus queue (configured via a variable named…
Yasir
  • 1,595
  • 5
  • 23
  • 42
9
votes
3 answers

Deploying azure webjob via git

I have a solution containing a .net mvc website, and a webjob. I deploy using git - so on git push to azure, my website is upgraded. I'm now just adding a console application that is going to be run on a schedule. I'm trying to work out how to…
Matt Roberts
  • 26,371
  • 31
  • 103
  • 180
8
votes
6 answers

How to make a continuous delivery of a python function app deployed in Azure?

For the first time I deployed a Python function app to Azure using a deployment pipeline: https://learn.microsoft.com/bs-latn-ba/azure/azure-functions/functions-how-to-azure-devops The package is deployed to Azure using Kudu Zip deploy. My http…
Anthony Brenelière
  • 60,646
  • 14
  • 46
  • 58
7
votes
1 answer

Kudu Debug console Bash vs SSH

In Azure when using a Application Service on Linux (Node) there is a menu on top of Kudu: Debug console. "Debug console" has to choices: Bash and SSH. What is the difference between them? It looks like they follow to different environments.
Michael Chudinov
  • 2,620
  • 28
  • 43
7
votes
2 answers

Preventing staging site restart during a swap

From how I understand it, the only reason a staging site would require restart is if there exists app settings or connection strings configured as slot settings. Although this doesn't always seem to be true. One of our applications will restart…
Dave New
  • 38,496
  • 59
  • 215
  • 394
7
votes
3 answers

How to restart Azure Web App programmatically

Is any way to restart the Azure Web App programmatically, i.e. Kudu or some another kind? I'v found that it is possible using Management Libraries, but it is not applicable for me since I can't create application in AD.
Laki State
  • 71
  • 1
  • 2
7
votes
1 answer

Grunt fails to run on Azure Web Site

I'm trying to build and package my project using Azure's Git deployment. I have created the following files .deployment deploy.cmd Gruntfile.js package.json My .deployment file calls deploy.cmd. deploy.cmd sets up the environment by setting the…
Daniel A. White
  • 187,200
  • 47
  • 362
  • 445
6
votes
0 answers

Azure release pipeline error: Failed to fetch Kudu App Settings. Error: Service Temporarily Unavailable (CODE: 503)

I have a Azure DevOps release pipeline which deploy a container to app service in Azure. When I run it, the task to deploy the container fails with message 2020-10-23T16:12:20.8516547Z ##[error]Error: Failed to fetch Kudu App Settings. Error:…
sean717
  • 11,759
  • 20
  • 66
  • 90
6
votes
2 answers

Azure App Service deploy task option to remove files in container upon deployment

I am deploying a python web app using Web App on Linux service and using a DevOps release pipeline. The pipeline task that I am using is called AzureRmWebAppDeployment@4. Between deployments, the files in the container are not being removed and this…
6
votes
3 answers

No route registered for '/api/continuouswebjobs/WebJobsName/run'

Main Issue: "No route registered for '/api/continuouswebjobs/WebJobName/run'" or /stop or /start but that is what is offered on the Azure portal under the webhook copy to clip board button if you are under a webjob menu under your webjob…
6
votes
5 answers

Azure webapp node.js app not starting

I'm trying to deploy a very simple express.js app on Azure webapp. The deployment log shows the that the deployment passes correctly but the app doesn't start. Checking the kudu process explorer shows that indeed the node.js process is not…
Guy Korland
  • 9,139
  • 14
  • 59
  • 106
6
votes
2 answers

How to reset the Kudu WebJob dashboard or logging?

I'm trying to find details of the function executions of a particular WebJob. Unfortunately the function dashboard in Kudu is showing duplicates, exclamation marks, and no function executions for over two months. Trying to use the Azure CLI to list…
Alex Angas
  • 59,219
  • 41
  • 137
  • 210
5
votes
2 answers

Error - Access is denied - deployment to Azure App Services

We use automatic deployment process in Azure by KUDU scripts and by today we see strange error in Azure deployment center: Command dotnet publish (and also 'dotnet build') returns: MSBUILD : error MSB1025: An internal failure occurred while running…
5
votes
1 answer

Getting UnauthorizedAccessException when deploying asp.net core app using Kudu build service

I have set up Continuous Deployment of my aspnet core 2.2 app using Kudu build service (directly connected through GitHub). It was fine until the day before yesterday but started getting UnauthorizedAccessException when I try to deploy anything…
Janak
  • 565
  • 6
  • 13
5
votes
3 answers

How do you get KUDU to use MSBuild 15

Microsoft.Net.Compilers is only supported on MSBuild v15.0 and above whatever the auto detect tooling is for KUDU, it always selects 14 is there a way for force it to select 15?
Chris Hayes
  • 3,876
  • 7
  • 42
  • 72
1
2
3
28 29