Skip to content

Commit 3ce6fe6

Browse files
authored
Merge pull request #47191 from masonyc/patch-1
Fix inconsistent example (Kustomize)
2 parents d1ad790 + d2e1d3c commit 3ce6fe6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/en/docs/tasks/configmap-secret/managing-secret-using-kustomize.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,17 +102,17 @@ kubectl get -k <directory-path> -o jsonpath='{.data}'
102102
The output is similar to:
103103

104104
```
105-
{ "password": "UyFCXCpkJHpEc2I9", "username": "YWRtaW4=" }
105+
{ "password": "MWYyZDFlMmU2N2Rm", "username": "YWRtaW4=" }
106106
```
107107

108108
```
109-
echo 'UyFCXCpkJHpEc2I9' | base64 --decode
109+
echo 'MWYyZDFlMmU2N2Rm' | base64 --decode
110110
```
111111

112112
The output is similar to:
113113

114114
```
115-
S!B\*d$zDsb=
115+
1f2d1e2e67df
116116
```
117117

118118
For more information, refer to

0 commit comments

Comments
 (0)