1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 11:46:01 +02:00
tldr/pages/common/fly.md

37 lines
978 B
Markdown
Raw Normal View History

2017-10-14 19:27:22 +02:00
# fly
> Command-line tool for concourse-ci.
2019-06-07 11:58:15 +01:00
> More information: <https://concourse-ci.org/fly.html>.
2017-10-14 19:27:22 +02:00
- Authenticate with and save concourse target:
2017-10-14 19:27:22 +02:00
`fly {{[-t|--target]}} {{target_name}} login {{[-n|--team-name]}} {{team_name}} {{[-c|--concourse-url]}} {{https://ci.example.com}}`
2017-10-14 19:27:22 +02:00
- List targets:
`fly targets`
- List pipelines:
`fly {{[-t|--target]}} {{target_name}} pipelines`
2017-10-14 19:27:22 +02:00
2017-10-24 14:38:39 +02:00
- Upload or update a pipeline:
2017-10-14 19:27:22 +02:00
`fly {{[-t|--target]}} {{target_name}} set-pipeline {{[-c|--config]}} {{pipeline.yml}} {{[-p|--pipeline]}} {{pipeline_name}}`
2017-10-14 19:27:22 +02:00
- Unpause pipeline:
`fly {{[-t|--target]}} {{target_name}} unpause-pipeline {{[-p|--pipeline]}} {{pipeline_name}}`
2017-10-14 19:27:22 +02:00
- Show pipeline configuration:
`fly {{[-t|--target]}} {{target_name}} get-pipeline {{[-p|--pipeline]}} {{pipeline_name}}`
2017-10-14 19:27:22 +02:00
- Update local copy of fly:
`fly {{[-t|--target]}} {{target_name}} sync`
2017-10-14 19:27:22 +02:00
- Destroy pipeline:
`fly {{[-t|--target]}} {{target_name}} destroy-pipeline {{[-p|--pipeline]}} {{pipeline_name}}`