Reputation: 1
Can any one know how to deploy Cloud Service Extended support using DevOps Release Pipeline. Thank you
I tried to deploy cloud service (extended support) using the old cloud service release pipeline and encounter an error saying "ConflictError: The specified DNS name is already taken."
Upvotes: 0
Views: 333
Reputation: 8468
Different with classic cloud service, we use ARM template deployment to create or update the CSES deployment for CICD process. You can follow the doc How to use Azure DevOps to publish cloud service extended support for the detail steps. It's yaml pipeline, but you can use same way in classic release.
Regarding the error ConflictError: The specified DNS name is already taken
, it's typically occurs when you’re trying to create an Azure Cloud Service with a DNS name (such as a custom domain) that is already in use by another resource(such as another cloud service, web app, or custom domain). You could follow below options for a check:
previous
deployments associated with the same DNS name. Also, check for any DNS records in your DNS provider.Upvotes: 1