Update secret.md

We had to escape a password that ended with `=` to make the secret work with our pod.
This commit is contained in:
Cristobal Dabed 2020-04-29 13:02:11 +02:00 committed by GitHub
parent d9e1b1a5ae
commit 8910e837c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -974,7 +974,7 @@ secret "test-db-secret" created
```
{{< note >}}
Special characters such as `$`, `\`, `*`, and `!` will be interpreted by your [shell](https://en.wikipedia.org/wiki/Shell_(computing)) and require escaping.
Special characters such as `$`, `\`, `*`, `=`, and `!` will be interpreted by your [shell](https://en.wikipedia.org/wiki/Shell_(computing)) and require escaping.
In most shells, the easiest way to escape the password is to surround it with single quotes (`'`).
For example, if your actual password is `S!B\*d$zDsb`, you should execute the command this way: