From 8910e837c04344b508da04c4ad942e63bb660169 Mon Sep 17 00:00:00 2001 From: Cristobal Dabed Date: Wed, 29 Apr 2020 13:02:11 +0200 Subject: [PATCH] Update secret.md We had to escape a password that ended with `=` to make the secret work with our pod. --- content/en/docs/concepts/configuration/secret.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/configuration/secret.md b/content/en/docs/concepts/configuration/secret.md index 4e34cb748d..29b4b759b8 100644 --- a/content/en/docs/concepts/configuration/secret.md +++ b/content/en/docs/concepts/configuration/secret.md @@ -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: