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 25c2367 + 41dff00 commit 0a6e7bfCopy full SHA for 0a6e7bf
content/en/docs/tasks/configmap-secret/managing-secret-using-kubectl.md
@@ -125,10 +125,10 @@ kubectl get secret db-user-pass -o jsonpath='{.data}'
125
The output is similar to:
126
127
```json
128
-{"password.txt":"MWYyZDFlMmU2N2Rm","username.txt":"YWRtaW4="}
+{"password":"MWYyZDFlMmU2N2Rm","username":"YWRtaW4="}
129
```
130
131
-Now you can decode the `password.txt` data:
+Now you can decode the `password` data:
132
133
```shell
134
echo 'MWYyZDFlMmU2N2Rm' | base64 --decode
0 commit comments