mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# fly
|
|
|
|
> Tool for concourse-ci.
|
|
> More information: <https://concourse-ci.org/fly.html>.
|
|
|
|
- Authenticate with and save concourse target:
|
|
|
|
`fly {{[-t|--target]}} {{target_name}} login {{[-n|--team-name]}} {{team_name}} {{[-c|--concourse-url]}} {{https://ci.example.com}}`
|
|
|
|
- List targets:
|
|
|
|
`fly targets`
|
|
|
|
- List pipelines:
|
|
|
|
`fly {{[-t|--target]}} {{target_name}} pipelines`
|
|
|
|
- Upload or update a pipeline:
|
|
|
|
`fly {{[-t|--target]}} {{target_name}} set-pipeline {{[-c|--config]}} {{pipeline.yml}} {{[-p|--pipeline]}} {{pipeline_name}}`
|
|
|
|
- Unpause pipeline:
|
|
|
|
`fly {{[-t|--target]}} {{target_name}} unpause-pipeline {{[-p|--pipeline]}} {{pipeline_name}}`
|
|
|
|
- Show pipeline configuration:
|
|
|
|
`fly {{[-t|--target]}} {{target_name}} get-pipeline {{[-p|--pipeline]}} {{pipeline_name}}`
|
|
|
|
- Update local copy of fly:
|
|
|
|
`fly {{[-t|--target]}} {{target_name}} sync`
|
|
|
|
- Destroy pipeline:
|
|
|
|
`fly {{[-t|--target]}} {{target_name}} destroy-pipeline {{[-p|--pipeline]}} {{pipeline_name}}`
|