Reputation: 495
How can we create Deployment only YAML pipeline for 5 apps in specified sequence.These apps code are in different project and Repos have their own build pipeline which publish build artifacts to artifactory feed.
Upvotes: 0
Views: 95
Reputation: 1214
These apps code are in different project and Repos
The Download Pipeline Artifacts task can download artifacts from a specific project/pipeline as long as you project name and pipeline id.
create Deployment only YAML pipeline for 5 apps in specified sequence.
It is suggested to put deployment steps in a deployment job. In the deploy
life cycle hook, add the DownloadPipelineArtifact
task to download your artifact and then deploy yout application in specified sequence.
Upvotes: 1