Soc A
Soc A

Reputation: 1

Cloud Service (Extended Support) Deploy using DevOps Release Pipeline

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

Answers (1)

wade zhou - MSFT
wade zhou - MSFT

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.

enter image description here

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:

  1. Choose a unique DNS name that is not currently in use.
  2. Ensure that you’ve completely removed any previous deployments associated with the same DNS name. Also, check for any DNS records in your DNS provider.

Upvotes: 1

Related Questions