Skip to content

Commit dab0125

Browse files
authored
Merge pull request #27149 from ydFu/update-managing-secret-using-kubectl
[zh] Sync tasks pages for managing-secret-using-kubectl.md
2 parents c3098c0 + c5d6010 commit dab0125

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

content/zh/docs/tasks/configmap-secret/managing-secret-using-kubectl.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,13 @@ kubectl get secret db-user-pass -o jsonpath='{.data}'
173173
输出类似于:
174174

175175
```json
176-
{"password.txt":"MWYyZDFlMmU2N2Rm","username.txt":"YWRtaW4="}
176+
{"password":"MWYyZDFlMmU2N2Rm","username":"YWRtaW4="}
177177
```
178178

179-
<!-- Now you can decode the `password.txt` data: -->
180-
现在你可以解码 `password.txt` 的数据:
179+
<!--
180+
Now you can decode the `password` data:
181+
-->
182+
现在你可以解码 `password` 的数据:
181183

182184
```shell
183185
echo 'MWYyZDFlMmU2N2Rm' | base64 --decode

0 commit comments

Comments
 (0)