VSTS CI/CD definition as scripts

2019-08-12 19:45发布

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?

1条回答
欢心
2楼-- · 2019-08-12 20:09

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.

查看更多
登录 后发表回答