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 5695c69 + 1f1c57c commit 158cf87Copy full SHA for 158cf87
content/ja/docs/tasks/configmap-secret/managing-secret-using-kubectl.md
@@ -114,10 +114,10 @@ kubectl get secret db-user-pass -o jsonpath='{.data}'
114
出力は次のようになります:
115
116
```json
117
-{"password.txt":"MWYyZDFlMmU2N2Rm","username.txt":"YWRtaW4="}
+{"password":"MWYyZDFlMmU2N2Rm","username":"YWRtaW4="}
118
```
119
120
-`password.txt`のデータをデコードします:
+`password`のデータをデコードします:
121
122
```shell
123
echo 'MWYyZDFlMmU2N2Rm' | base64 --decode
0 commit comments