Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
docs(upgrading-workflow): add note about using single quotes around b…
Browse files Browse the repository at this point in the history
…ase64 encoded string

Helm doesn't like it when the base64-encoded string is wrapped in double quotes. Perhaps this is an
intentional thing due to the yaml parser, but it is good to call it out here.
  • Loading branch information
Matthew Fisher committed Jan 6, 2017
1 parent 70f50a5 commit 5f6dd73
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/managing-workflow/upgrading-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,12 @@ $ helm upgrade deis/workflow
```
$ B64_KEY_JSON="$(cat ~/path/to/key.json | base64 | tr -d '[:space:]')"
$ helm upgrade <release_name> deis/workflow -f values.yaml --set gcs.key_json="${B64_KEY_JSON}",registry-token-refresher.gcr.key_json="${B64_KEY_JSON}"
$ # alternatively, simply replace the appropriate values in values.yaml and do without the `--set` parameter
```

Alternatively, simply replace the appropriate values in values.yaml and do without the `--set`
parameter. Make sure to wrap it in single quotes as double quotes will give a parser error when
upgrading.

### Step 2: Verify Upgrade

Verify that all components have started and passed their readiness checks:
Expand Down

0 comments on commit 5f6dd73

Please sign in to comment.