Sign in
Log inSign up
Raul Naupari

2 likes

468 reads

2 comments

Alexandre Nedelec
Alexandre Nedelec
Aug 15, 2022

Nice post 馃憤. I am just starting to use Nuke and that is the kind of thing I wanted to do (deploying to azure). Does zip deploy automatically handles the restart of the web app and everything? I fine it nice but I would prefer using the new Azure Management librairies to do the same, however I did not yet find how. When you use this in a CI/CD pipeline how to you provide your secrets parameters ? As environment variables loaded by the CI platform? By the way you should add the nuke tag to this article.

1
1 reply
Raul Naupari
Raul Naupari
Author
Aug 21, 2022

Thanks. As far as I know, after the zip deployment the web app is going to restart. You can try to use the lightweight API to use the Azure-CLI as a tool and invoke commands like az webapp deployment source config-zip --resource-group <RESOURCE GROUP> --name <WEB APP NAME> --src <ZIP FILE PATH> (you are going to need to run az login prior that). About the secrets, you are right environment variables in the CI server are how I deal with that.

2