Browse Source

made changes as requested.

Martin Caarels 7 years ago
parent
commit
2c7f5e1c5c
1 changed files with 9 additions and 9 deletions
  1. 9 9
      pages/common/fly.md

+ 9 - 9
pages/common/fly.md

@@ -1,10 +1,10 @@
 # fly
 # fly
 
 
-> Cli tool for concourse-ci.
+> Command line tool for concourse-ci.
 
 
 - Authenticate with and save concourse target:
 - Authenticate with and save concourse target:
 
 
-`fly --target {{example}} login --team-name {{my-team}} -c {{https://ci.example.com}}`
+`fly --target {{target_name}} login --team-name {{team_name}} -c {{https://ci.example.com}}`
 
 
 - List targets:
 - List targets:
 
 
@@ -12,24 +12,24 @@
 
 
 - List pipelines:
 - List pipelines:
 
 
-`fly -t {{example}} pipelines`
+`fly -t {{target_name}} pipelines`
 
 
-- Upload/Update pipeline:
+- Upload or update a pipeline:
 
 
-`fly -t {{example}} set-pipeline --config {{pipeline.yml}} --pipeline {{my-pipeline}}`
+`fly -t {{target_name}} set-pipeline --config {{pipeline.yml}} --pipeline {{pipeline_name}}`
 
 
 - Unpause pipeline:
 - Unpause pipeline:
 
 
-`fly -t {{example}} unpause-pipeline --pipeline {{my-pipeline}}`
+`fly -t {{target_name}} unpause-pipeline --pipeline {{pipeline_name}}`
 
 
 - Show pipeline configuration:
 - Show pipeline configuration:
 
 
-`fly -t {{example}} get-pipeline --pipeline {{my-pipeline}}`
+`fly -t {{target_name}} get-pipeline --pipeline {{pipeline_name}}`
 
 
 - Update local copy of fly:
 - Update local copy of fly:
 
 
-`fly -t {{example}} sync`
+`fly -t {{target_name}} sync`
 
 
 - Destroy pipeline:
 - Destroy pipeline:
 
 
-`fly -t {{example}} destroy-pipeline --pipeline {{my-pipeline}}`
+`fly -t {{target_name}} destroy-pipeline --pipeline {{pipeline_name}}`