Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

BitBucket Pipeline deploying to Azure Slots

tomsimmons
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 3, 2020

I have managed to get a BitBucket Pipeline building and deploying an Azure Function.

I've since been reading about Azure slots.  Is it possible to target a deployment to a slot?  If it is, is it also possible to perform the slot swap from a pipeline?

 

Tom

2 answers

0 votes
Kristoffer Dominic Amora March 11, 2021

This is what we used. https://bitbucket.org/microsoft/azure-web-apps-deploy/src/master/

Note that you would need to specify the "SLOT" if you added one in addition to the default production slot. In Azure Deployment Slots, the web app name will be appended with the slot name but only the slot name should be in the YAML config.

For example, if the slot name in Azure Deployment Slot is MyWebApp-<slotName>. Bitbucket Pipeline should look like this:

step&deploy-to-azure-staging        
name: Deploy to Azure        
deployment: staging        
script:        
- pipe: atlassian/azure-web-apps-deploy:1.0.0          
variables:            
AZURE_APP_ID: $AZURE_APP_ID            
AZURE_PASSWORD: $AZURE_PASSWORD            
AZURE_TENANT_ID: $AZURE_TENANT_ID            
AZURE_RESOURCE_GROUP: $AZURE_RESOURCE_GROUP            
AZURE_APP_NAME: $AZURE_APP_NAME            
ZIP_FILE: 'MyWebApp-$BITBUCKET_BUILD_NUMBER.zip'            
SLOT: 'slotName'


I believe Slot Swapping will be done in Azure (via Azure Portal or Azure CLI) and not within Bitbucket Pipelines.

0 votes
Brad Plett
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 5, 2020

I noticed in the "advanced" example (from https://bitbucket.org/microsoft/azure-web-apps-deploy/src/1.0.3/) that there was a variable for the deployment slot.  I don't know if that will help, and it doesn't address the question of slot swapping in the pipeline, but maybe it will shed some light on the issue for you.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events