Browse Source

fix(docs): typo in kubectl commands

Mykhailo Kuzmich 4 years ago
parent
commit
0de0796fcd
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/guides-all-keys-one-secret.md

+ 3 - 3
docs/guides-all-keys-one-secret.md

@@ -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
+```