Skip to content

Adding The Pipeline

David Dieruf edited this page Jan 29, 2020 · 2 revisions

You'll need 2 files from this repo, pipeline.yml and vars-min.yml.

  1. The vars-min.yml file will feed values to the pipeline. This yml is a minimum to get started, read below for additional values.

  2. Using the fly cli, login to concourse, and set the pipeline with variables filled.

Powershell Set Pipeline

 fly -t <MY-TARGET> set-pipeline `
  --pipeline create-windows-stemcell `
  --config .\pipeline.yml `
  --load-vars-from .\vars-min.yml

Bash Set Pipeline

fly -t <MY-TARGET> set-pipeline \
  --pipeline create-windows-stemcell \
  --config ./pipeline.yml \
  --load-vars-from ./vars-min.yml
Clone this wiki locally