LoginSignup
3
3

More than 5 years have passed since last update.

Concourse CIのよく使うコマンド集

Posted at

mainチームにログイン

fly -t localhost_main login -c http://localhost:8080 -n main -u concourse -p concourse
fly targets

チームを作成

fly -t localhost_main set-team -n SAMPLE_TEAM --basic-auth-username SAMPLE_USER --basic-auth-password SAMPLE_PASS
fly -t localhost_main teams

チームにログイン

fly -t localhost_SAMPLE_TEAM login -c http://localhost:8080 -n SAMPLE_TEAM -u SAMPLE_USER -p SAMPLE_PASS
fly targets

チームにパイプラインを作成

# バリデーション
fly -t localhost_SAMPLE_TEAM validate-pipeline -c SAMPLE_PIPELINE.yml

# パイプライン作成/更新
fly -t localhost_SAMPLE_TEAM set-pipeline -p SAMPLE_PIPELINE -c SAMPLE_PIPELINE.yml

# パイプライン解除
fly -t localhost_SAMPLE_TEAM unpause-pipeline -p SAMPLE_PIPELINE

# パイプライン一覧
fly -t localhost_SAMPLE_TEAM pipelines

パイプラインを実行

fly -t localhost_SAMPLE_TEAM trigger-job -j SAMPLE_PIPELINE/SAMPLE_JOB_1 -w
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3