Pivotal Concourse Cheatsheet

Table of Contents

Pivotal Concourse is a CI/CD tool.

fly commands

ActionCommand
Get helpfly -h or fly command -h
Login and specify targetfly -t myTarget login --concourse-url url-of-my-concourse-server
List saved targetsfly targets
Download and replace the current fly from the targetfly -t myTarget sync
See your saved targetscat ~/.flyrc
Execute a taskfly -t myTarget e -c hello_world.yml
Set Pipeline (pushes the pipeline.yml file)fly -t myTarget sp -c pipeline.yml -p myPipeline -l myParameters.yml
Unpause Pipelinefly -t myTarget up -p myPipeline
Pause Pipelinefly -t myTarget pp -p myPipeline
View the results of recent builds across all pipelinesfly -t myTarget builds
View the results of a previous buildfly -t myTarget watch --build build_number
Manually trigger a jobfly -t myTarget tj -j myPipeline/jobName -w
Destroy Pipelinefly -t myTarget dp -p myPipeline