Browse Source

docs: Fix (#2627)

remove redundant pipe(`|`)

Signed-off-by: nikkie <takuyafjp+develop@gmail.com>
Co-authored-by: Moritz Johner <moolen@users.noreply.github.com>
nikkie 2 years ago
parent
commit
a7d5bb56bf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/provider/google-secrets-manager.md

+ 1 - 1
docs/provider/google-secrets-manager.md

@@ -107,5 +107,5 @@ To create a kubernetes secret from the GCP Secret Manager secret a `Kind=Externa
 
 The operator will fetch the GCP Secret Manager secret and inject it as a `Kind=Secret`
 ```
-kubectl get secret secret-to-be-created -n <namespace> | -o jsonpath='{.data.dev-secret-test}' | base64 -d
+kubectl get secret secret-to-be-created -n <namespace> -o jsonpath='{.data.dev-secret-test}' | base64 -d
 ```