Skip to content
This repository was archived by the owner on May 28, 2021. It is now read-only.

Use --decode for cross OS compatibility #187

Merged
merged 1 commit into from
Jul 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ The first thing you need to do is fetch the MySQL root password which is
auto-generated for us by default and stored in a Secret named `<dbname>-root-password`

```console
$ kubectl -n my-namespace get secret my-app-db-root-password -o jsonpath="{.data.password}" | base64 -D
$ kubectl -n my-namespace get secret my-app-db-root-password -o jsonpath="{.data.password}" | base64 --decode
ETdmMKh2UuDq9m7y
```

Expand Down