We are building a Microservices based architecture and we are having 50 odd CI and 50 odd CD pipelines. Is there a way to script the CI / CD Build and Release definitions? We want this to be a repeatable process and do not want to leave it to our DevOps engineer(s) as it is prone to errors. Please note that I am not talking about ARM (which is already being used by us). Is there a way to do the above?
相关问题
- running headless chrome in an microsoft azure web
- Docker task in Azure devops won't accept "$(pw
- Authentication Failure using Git-LFS Azure DevOps
- Register MicroServices in Azure Active Directory (
- Getting error: File extension specified '.webt
相关文章
- Best way to manage docker containers with supervis
- Build errors of missing packages in Visual Studio
- SQL Azure Reset autoincrement
- Jenkins Pipeline having “Multiple candidate revisi
- How to cast Azure DocumentDB Document class to my
- VSTS continuous integration triggers not working
- Can't get azure web role to run locally using
- Azure WebApp - Unable to auto-detect the runtime s
For builds, you can use YAML builds, which are currently in preview.
For releases, there's nothing equivalent yet.
You could always use the REST APIs to extract the build and release definitions as JSON, source control them, and then create a continuous delivery pipeline to update them when the definitions in source control change.