"Failed to set up deployment" on Azure webapp Deployment center

Akiyasu Maeda 21 Reputation points
2020-07-24T10:03:04.21+00:00

I'm using Deployment Center's External to deploy my source from gitlab to my webapp. But after I click Finish, "Failed to set up deployment" message is showed but It doesn't have any information else, so I don't know why it is happened. But before this message is showed up, I was using it normally and deploy many times in one day to confirm and fix bugs from my source. So have any limit to deploy for 1 day? or my account is locked because I deployed many times?13537-failed.jpg

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
6,949 questions
0 comments No comments
{count} votes

Accepted answer
  1. SnehaAgrawal-MSFT 18,366 Reputation points
    2020-07-25T07:38:02.46+00:00

    Thanks for asking question! Could you please elaborate on what App Service plan and number of apps you deployed, to help you better on this. As if the resources utilization is high and when trying to perform deployment it will fail due to High CPU and Memory utilization. To resolve this issue, scale up the app service plan or move few of your apps to another App Service plan to have a balanced resources utilization.

    Also, you may refer to below link which will be helpful to troubleshoot this issue.

    https://github.com/projectkudu/kudu/wiki/Deployment-vs-runtime-issues
    https://github.com/projectkudu/kudu/wiki/Investigating-issues
    https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/azure-apps/azure-continuous-deployment?view=aspnetcore-2.2
    https://learn.microsoft.com/en-us/azure/app-service/deploy-continuous-deployment
    https://learn.microsoft.com/en-us/azure/app-service/deploy-local-git


2 additional answers

Sort by: Most helpful
  1. SnehaAgrawal-MSFT 18,366 Reputation points
    2020-07-27T15:06:26.933+00:00

    Thanks for reply! glad to know! Every Azure Web App has a home directory stored/backed by Azure Storage. This network share is where applications store their content. This directory is available for the sandbox with read/write access.
    As a convenience for our customers, the sandbox implements a dynamic symbolic link in kernel mode which maps d:\home to the customer home directory. This is done to remove the need of the customer to keep referencing their own network share path when accessing the site. No matter where the site runs, or how many sites run on a VM, each can access their home directory using d:\home.

    You may refer to below link for details on this:

    https://github.com/projectkudu/kudu/wiki/Azure-Web-App-sandbox#file-system-restrictionsconsiderations

    https://learn.microsoft.com/en-us/azure/app-service/operating-system-functionality

    You may want to know App Service Diagnostics is an intelligent and interactive experience to help you troubleshoot your app with no configuration required. When you run into issues with your app, App Service Diagnostics points out what’s wrong to guide you to the right information to more easily troubleshoot and resolve issues.
    For troubleshooting high memory issues go to Azure Portal> Go to your app > Click on Diagnose & Solve problem from left menu> Click on Availability & performance> observe for Memory Usage.

    0 comments No comments

  2. Akiyasu Maeda 21 Reputation points
    2020-07-28T02:51:45.397+00:00

    Thank you for your replying.
    But when I checked the storage of D:\home, there is only 400MB, so where is 1600MB that I could check it?
    Because I wanna remove it to continue.
    I'm using Webapp with Free plan, so I have 2048MB to storage, I think so.