Skip to content

Commit

Permalink
Create Secret / Fixed the raw data example
Browse files Browse the repository at this point in the history
Based on the description the example is supposed to create a Secret that stores the username  and the password, but this was not the case. It was using the devuser username instead of admin. I have changed the example to be actually doing the task that was described above.
  • Loading branch information
4TT1L4 committed Nov 17, 2022
1 parent ecd6a47 commit 78d6a56
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -33,7 +33,7 @@ Run the following command:

```shell
kubectl create secret generic db-user-pass \
--from-literal=username=devuser \
--from-literal=username=admin \
--from-literal=password='S!B\*d$zDsb='
```
You must use single quotes `''` to escape special characters such as `$`, `\`,
Expand Down

0 comments on commit 78d6a56

Please sign in to comment.