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.
2 parents c3098c0 + c5d6010 commit dab0125Copy full SHA for dab0125
content/zh/docs/tasks/configmap-secret/managing-secret-using-kubectl.md
@@ -173,11 +173,13 @@ kubectl get secret db-user-pass -o jsonpath='{.data}'
173
输出类似于:
174
175
```json
176
-{"password.txt":"MWYyZDFlMmU2N2Rm","username.txt":"YWRtaW4="}
+{"password":"MWYyZDFlMmU2N2Rm","username":"YWRtaW4="}
177
```
178
179
-<!-- Now you can decode the `password.txt` data: -->
180
-现在你可以解码 `password.txt` 的数据:
+<!--
+Now you can decode the `password` data:
181
+-->
182
+现在你可以解码 `password` 的数据:
183
184
```shell
185
echo 'MWYyZDFlMmU2N2Rm' | base64 --decode
0 commit comments