1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/fly.md

36 lines
694 B
Markdown
Raw Normal View History

2017-10-14 19:27:22 +02:00
# fly
> Cli tool for concourse-ci.
- Authenticate with and save concourse target:
2017-10-14 19:27:22 +02:00
`fly --target {{example}} login --team-name {{my-team}} -c {{https://ci.example.com}}`
- List targets:
`fly targets`
- List pipelines:
`fly -t {{example}} pipelines`
2017-10-15 21:25:32 +02:00
- Upload/Update pipeline:
2017-10-14 19:27:22 +02:00
`fly -t {{example}} set-pipeline --config {{pipeline.yml}} --pipeline {{my-pipeline}}`
- Unpause pipeline:
`fly -t {{example}} unpause-pipeline --pipeline {{my-pipeline}}`
- Show pipeline configuration:
`fly -t {{example}} get-pipeline --pipeline {{my-pipeline}}`
- Update local copy of fly:
`fly -t {{example}} sync`
- Destroy pipeline:
`fly -t {{example}} destroy-pipeline --pipeline {{my-pipeline}}`