rename folder

This commit is contained in:
2026-04-12 22:41:31 +07:00
parent 7190c2befe
commit 1e221160f7
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
apiVersion: external-secrets.io/v1
kind: ClusterSecretStore
metadata:
name: vault-backend
spec:
provider:
vault:
server: "http://vault.vault.svc.cluster.local:8200"
path: "kv"
# Version is the Vault KV secret engine version.
# This can be either "v1" or "v2", defaults to "v2"
version: "v2"
auth:
# points to a secret that contains a vault token
# https://www.vaultproject.io/docs/auth/token
tokenSecretRef:
name: "vault-token"
key: "token"
namespace: "external-secrets"

View File

@@ -0,0 +1,10 @@
apiVersion: v1
kind: Secret
metadata:
name: vault-token
namespace: external-secrets # Must match the namespace defined in ClusterSecretStore tokenSecretRef
type: Opaque
data:
# Base64 encoded vault token.
# You can generate this by running: echo -n "YOUR_VAULT_TOKEN" | base64
token: aHZzLmJyUHBpbmZPTlI5RU9BeHpNR0ZIaDBIaA== # placeholder