Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Concourse入門 / Concourse Getting Started

Concourse入門 / Concourse Getting Started

watawuwu

April 27, 2018
Tweet

More Decks by watawuwu

Other Decks in Technology

Transcript

  1. profile: name: 松井 渉 trn: さび開発 twitter: @watawuwu role: [

    Server, Infra, SRE ] lang: [ Rust, Scala, Golang, PHP ]
  2. 2. Configuration As Code resources: - name: slack-notif type: git

    source: uri: watawuwu/slack-notification-resource/ jobs: - name: demo plan: - get: slack-notif trigger: true - task: unit-test file: test.yml
  3. 4. All operations by CLI $ fly -t ci set-pipeline

    \ --config job.yml \ --pipeline name
  4. hello.yaml jobs: - name: job-hello plan: - task: hello config:

    platform: linux image_resource: type: docker-image source: { repository: busybox } run: path: echo # pathとは実行コマンドのパスのこと(イケテナイ) args: - hello