Skip to content

Commit 3664366

Browse files
committed
Merge pull request #113 from arschles/rm-base64
doc(object-storage): remove base64 references where they don't make s…
2 parents ef26d58 + 4bfbaac commit 3664366

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

src/installing-workflow/configuring-object-storage.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,7 @@ The registry reads the credential information from a `/var/run/secrets/deis/regi
179179

180180
### Helm Chart
181181

182-
If you are using the [Helm Chart for Workflow][helm-chart], put your base64-encoded credentials in the [objectstorage.toml][objectstorage-toml] file before you run `helm generate`. For more information, see the [installation instructions][helm-install] for more details on using Helm.
183-
184-
Note - to base64 encode your credentials, you can use the `base64` tool on most systems. Here's an example usage:
185-
186-
```console
187-
echo $MY_ACCESS_KEY | base64
188-
```
182+
If you are using the [Helm Chart for Workflow][helm-chart], put your credentials in the [objectstorage.toml][objectstorage-toml] file before you run `helm generate`. Note that you don't need to base64-encode the credentials, as Helm will do that for you. For more information, see the [installation instructions][helm-install] for more details on using Helm.
189183

190184
## [deis/database](https://github.com/deis/postgres)
191185

@@ -224,9 +218,12 @@ You'll also need to add two environment variables to the https://github.com/deis
224218

225219
### Helm Chart
226220

227-
If you are using the [Helm Chart for Workflow][helm-chart], put your base64-encoded credentials in the [objectstorage.toml][objectstorage-toml] file before you run `helm generate`. For more information, see the [installation instructions][helm-install] for more details on using Helm.
221+
If you are using the [Helm Chart for Workflow][helm-chart], you'll have to put your credentials into the below two places before you run `helm generate`. For more details on using Helm, see the [installation instructions][helm-install].
228222

229-
Note - to base64 encode your credentials, you can use the `base64` tool on most systems. Here's an example usage:
223+
- The [minio secret file][minio-user-secret] (under `access-key-id` and `access-secret-key`). Ensure your credentials are base64-encoded
224+
- The [objectstorage.toml][objectstorage-toml] file. Your credentials need not be base64-encoded in this file
225+
226+
Note - to base64 encode your credentials for use in the [minio secret file][minio-user-secret], you can use the `base64` tool on most systems. Here's an example usage:
230227

231228
```console
232229
echo $MY_ACCESS_KEY | base64

0 commit comments

Comments
 (0)