Reputation: 1778
I have deployed a web app creating a new resource group using Azure templates triggering from Octopus. 10 minutes for ab empty web app is long time frame. What does this mean ? How can I debug the process ? We are building a Continuous deployment system where time matters a lot.
Upvotes: 0
Views: 73
Reputation: 27934
You should consider to make a separate deployment for the web-app resource and the application it self. The application can use slots in the web-app so you will be able to put it to production without downtime. There is no need to redeploy the web-app resource every time.
Upvotes: 2