We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e85a1b commit 7089e5aCopy full SHA for 7089e5a
content/zh/docs/tasks/configmap-secret/managing-secret-using-kubectl.md
@@ -96,6 +96,9 @@ you should execute the command this way:
96
你还可以使用 `--from-literal=<key>=<value>` 标签提供 Secret 数据。
97
可以多次使用此标签,提供多个键值对。
98
请注意,特殊字符(例如:`$`,`\`,`*`,`=` 和 `!`)由你的 [shell](https://en.wikipedia.org/wiki/Shell_(computing)) 解释执行,而且需要转义。
99
+在大多数 shell 中,转义密码最简便的方法是用单引号括起来。
100
+比如,如果你的密码是 `S!B\*d$zDsb=`,
101
+可以像下面一样执行命令:
102
103
```shell
104
kubectl create secret generic dev-db-secret \
0 commit comments