Browse Source

docs(release): Resolve incorrect references in documentation samples (#5431)

* Fix broken docs example

Trying to interpret the docs was tricky, it makes more sense this way.

Signed-off-by: Devon Stewart <blast@hardchee.se>

* Update full-pushsecret-no-key-no-property.yaml

Signed-off-by: Devon Stewart <blast@hardchee.se>

* Update full-pushsecret.yaml

Signed-off-by: Devon Stewart <blast@hardchee.se>

---------

Signed-off-by: Devon Stewart <blast@hardchee.se>
Co-authored-by: Gergely Brautigam <skarlso777@gmail.com>
Devon Stewart 6 months ago
parent
commit
8f0a92179e

+ 1 - 1
docs/snippets/full-pushsecret-no-key-no-property.yaml

@@ -1,7 +1,7 @@
 apiVersion: external-secrets.io/v1alpha1
 kind: PushSecret
 metadata:
-  name: pushsecret-example # Customisable
+  name: pokedex-credentials # Customisable
   namespace: default # Same of the SecretStores
 spec:
   deletionPolicy: Delete # the provider' secret will be deleted if the PushSecret is deleted

+ 1 - 1
docs/snippets/full-pushsecret-no-key-with-property.yaml

@@ -1,7 +1,7 @@
 apiVersion: external-secrets.io/v1alpha1
 kind: PushSecret
 metadata:
-  name: pushsecret-example # Customisable
+  name: pokedex-credentials # Customisable
   namespace: default # Same of the SecretStores
 spec:
   deletionPolicy: Delete # the provider' secret will be deleted if the PushSecret is deleted

+ 1 - 1
docs/snippets/full-pushsecret.yaml

@@ -4,7 +4,7 @@
 apiVersion: v1
 kind: Secret
 metadata:
-  name: source-secret
+  name: pushsecret-example
 stringData:
   best-pokemon-src: "Pikachu"
 ---