Skip to content

Commit 158cf87

Browse files
authored
Merge pull request #28014 from Arhell/improve
[ja] Improvement: Managing Secret using kubectl
2 parents 5695c69 + 1f1c57c commit 158cf87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,10 @@ kubectl get secret db-user-pass -o jsonpath='{.data}'
114114
出力は次のようになります:
115115

116116
```json
117-
{"password.txt":"MWYyZDFlMmU2N2Rm","username.txt":"YWRtaW4="}
117+
{"password":"MWYyZDFlMmU2N2Rm","username":"YWRtaW4="}
118118
```
119119

120-
`password.txt`のデータをデコードします:
120+
`password`のデータをデコードします:
121121

122122
```shell
123123
echo 'MWYyZDFlMmU2N2Rm' | base64 --decode

0 commit comments

Comments
 (0)