| 12345678910111213141516171819 |
- apiVersion: external-secrets.io/v1alpha1
- kind: PushSecret
- metadata:
- name: push-to-dvls
- spec:
- refreshInterval: 1h
- secretStoreRefs:
- - name: dvls-store
- kind: SecretStore
- selector:
- secret:
- name: my-k8s-secret
- data:
- - match:
- secretKey: password
- remoteRef:
- # When vault is set in the SecretStore, remoteKey is the entry name
- # (or path/name). Without vault, use the legacy 'vault-uuid/entry-uuid' format.
- remoteKey: 'db-credentials'
|