mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
Merge pull request #566 from kuzm1ch/main
fix(docs): typo in kubectl commands
This commit is contained in:
commit
1bb916df2f
1 changed files with 3 additions and 3 deletions
|
@ -22,6 +22,6 @@ Now, when creating our ExternalSecret resource, instead of using the data field,
|
|||
To check both values we can run:
|
||||
|
||||
```
|
||||
kubectl get secret secret-to-be-created -n <namespace> | -o jsonpath='{.data.username}' | base64 -d
|
||||
kubectl get secret secret-to-be-created -n <namespace> | -o jsonpath='{.data.surname}' | base64 -d
|
||||
```
|
||||
kubectl get secret secret-to-be-created -n <namespace> -o jsonpath='{.data.username}' | base64 -d
|
||||
kubectl get secret secret-to-be-created -n <namespace> -o jsonpath='{.data.surname}' | base64 -d
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue