Skip to content

Commit bfc30e0

Browse files
author
Matthew Fisher
authored
Merge pull request #687 from bacongobbler/add-note-single-quotes
docs(upgrading-workflow): add note about using single quotes around base64 encoded string
2 parents c300fba + 5f6dd73 commit bfc30e0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/managing-workflow/upgrading-workflow.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,12 @@ $ helm upgrade <release-name> deis/workflow
3939
```
4040
$ B64_KEY_JSON="$(cat ~/path/to/key.json | base64 | tr -d '[:space:]')"
4141
$ 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}"
42-
$ # alternatively, simply replace the appropriate values in values.yaml and do without the `--set` parameter
4342
```
4443

44+
Alternatively, simply replace the appropriate values in values.yaml and do without the `--set`
45+
parameter. Make sure to wrap it in single quotes as double quotes will give a parser error when
46+
upgrading.
47+
4548
### Step 2: Verify Upgrade
4649

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

0 commit comments

Comments
 (0)