Questions tagged [azure-deployment-slots]
167 questions
0
votes
1 answer
Function app deployment slot swap doesn't swap
I have a function app (durable function) and a staging slot:
staging slot contains these 2 functions:
production slot contains this one function:
After swapping, I see 2 functions in both staging slot and production slot:
My understabding is that…

user989988
- 3,006
- 7
- 44
- 91
0
votes
0 answers
Configure App Settings for Production and Staging slots via Bicep
I have a few Config App Settings in my function app as follows:
{
name: 'WEBSITE_RUN_FROM_PACKAGE'
value: 1
}
{
name: 'WEBSITE_ENABLE_SYNC_UPDATE_SITE'
value: 1
}
{
name: 'SCM_TOUCH_WEBCONFIG_AFTER_DEPLOYMENT'
…

user989988
- 3,006
- 7
- 44
- 91
0
votes
1 answer
Is it possible to create an Azure Storage Event Grid Subscription to an Azure Function deployment slot?
I'm using Azure Portal to create a new Event Grid Subscription on my Blob Storage account.
When configuring the "Endpoint Details" section, I specify that the Endpoint Type is an Azure Function. When prompted to select the Function I want to…

Parker
- 1
0
votes
2 answers
Azure Function Identity Providers and Deployment Slots
I'm using an openid connect identity provider with an azure function. I'm looking to add a deployment slot for dev, with the current endpoint being used for production. Dev and production will obviously have two separate endpoints. The identity…

ashic
- 6,367
- 5
- 33
- 54
0
votes
1 answer
How to achieve true zero downtime deployment in Azure App Service
I have some containers deployed on Azure App Service. To achieve zero downtime, Azure recommends using Deployment slots and swapping the staging and production slots. This is fine for a normal web applications, but If I have a web app where I am…

randy
- 765
- 7
- 24
0
votes
1 answer
Azure functions deployment slots traffic adjuster not showing
I have two deployment slots available but the traffic manager that is supposed to the in the right most column isn't showing up. What could be the reason for this?
picture
What I'm referring to: picture

Jesper
- 3
- 2
0
votes
1 answer
How to publish two .net websites on one Azure WebApp?
I have two web apps hosted on Windows Azure VM -> IIS with the following names
MyWeb.com (Front end for Users- Javascript)
api.MyWeb.com (backend for Admins - .net core app)
Question:
Can I publish these two apps into one Azure WebApp? OR do I…

Tariq
- 27
- 4
0
votes
1 answer
applicationInitialization during azure slot swap with different hostnames
We are attempting to use the applicationInitialization feature

jpspringall
- 23
- 4
0
votes
2 answers
Staging Slot processing messages for Web App background task
I am using Azure App service plan to host web App which process Service Bus Topic message.
I am using Azure Function App also which has http trigger to execute Event grid data.
Both Web App(App Service Plan) and Function App(Elastic Premium plan)…

Amit Agrawal
- 51
- 2
- 16
0
votes
3 answers
Recommended ways to deal with database migrations while doing a swap using deployment slots
I am trying to understand the use of deployment slots for hosting my web app using the Azure app service.
I am particularly confused with the ideal ways to deal with the database while the swap is performed.
While maintaining two database versions…

harika
- 65
- 6
0
votes
1 answer
Detect if an Azure slot swap failed after deploying in ADO?
Currently when deploying our Azure functions we make use of the ADO pipeline task to deploy them:
- task: AzureFunctionApp@1
displayName: 'Deploy Function'
inputs:
azureSubscription: 'our sub'
…

FBryant87
- 4,273
- 2
- 44
- 72
0
votes
1 answer
Azure App Service Deployment Slot Deployment Center Deployment Failing
I am trying to deploy to a deployment slot of Azure App Service through the deployment center. I have a repo in Azure DevOps and using Kudu deployment. On the last step when I click on Finish the deployment set up through Azure Portal, I am getting…

tRuEsAtM
- 3,517
- 6
- 43
- 83
0
votes
1 answer
Validate connection to the stage deployment
The web app is running fine in Prod. There was no stage previously. So I asked the infra team to create a stage slot, so that I can deploy the application to stage then to the Prod (just following the best Azure practice).
However, when I'm creating…

AskMe
- 2,495
- 8
- 49
- 102
0
votes
1 answer
Azure Deployment Slots with Post Implementation Testing
Our company website will soon be hosted in an App Service in Azure. The website communicates with an API layer that also hosted in Azure and links to our internal systems and databases. The architecture at this level cannot be changed at this time…

Jay
- 878
- 3
- 12
- 22
0
votes
1 answer
Azure Web App Slot Kudu site domain has no dns record after creation
I couldn't find any similar cases by googling, but I have experienced it at least twice in the past a couple of days.
Our DevOps process for a Web App deletes the current slot and create a new one then do Web Deploy.
The issue is that sometime…

zhanke
- 671
- 7
- 25