Skip to content

Commit 5f6dd73

Browse files
author
Matthew Fisher
committed
docs(upgrading-workflow): add note about using single quotes around base64 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.
1 parent 70f50a5 commit 5f6dd73

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
@@ -37,9 +37,12 @@ $ helm upgrade deis/workflow
3737
```
3838
$ B64_KEY_JSON="$(cat ~/path/to/key.json | base64 | tr -d '[:space:]')"
3939
$ 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}"
40-
$ # alternatively, simply replace the appropriate values in values.yaml and do without the `--set` parameter
4140
```
4241

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

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

0 commit comments

Comments
 (0)