tpl/gcp/docs/concourse.md in kite-0.1.0 vs tpl/gcp/docs/concourse.md in kite-0.2.0

- old
+ new

@@ -8,13 +8,13 @@ ### Setup Fill out the "token" field in `deployments/concourse/concourse.yml` with root token received from `vault init`. -Deploy Concourse by running the script with the required arguments +Deploy Concourse by running the script with the Vault token as argument(strong passwords for Concourse auth and db will be generated automatically) ``` -./bin/concourse-deploy.sh *concourse_auth_password* *concourse_db_password* *vault_token* +./bin/concourse-deploy.sh *vault_token* ``` ### Connect GitHub oAuth To configure GitHub oAuth, you'll first need to [create](https://developer.github.com/apps/building-integrations/setting-up-and-registering-oauth-apps/registering-oauth-apps) a GitHub oAuth app. @@ -32,10 +32,10 @@ - Go to test folder: `cd deployments/concourse/test` - Fill out `test-credentials.yml` - Add necessary secrets to your Vault(see [docs/vault.md](docs/vault.md)) - Download the `fly` client from Concourse web panel and add it to your PATH: `mv *path_to_fly* /usr/local/bin` -- Login to Concourse using the `fly` client: `fly -t ci --concourse-url *concourse-url*` +- Login to Concourse using the `fly` client: `fly login -t ci --concourse-url *concourse-url*` - Create a test pipeline with `fly set-pipeline -t ci -c test-pipeline.yml -p test --load-vars-from test-credentials.yml -n` - Unpause pipeline: `fly unpause-pipeline -t ci -p test` - Trigger and unpause the test job: `fly trigger-job -t ci -j test/test-publish` - See the results on Concourse web panel or use: `fly watch -p test -j test/test-publish`