1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-15 17:51:01 +00:00
external-secrets/docs/snippets/multiline-template-v1-external-secret.yaml
Tony DevOps 3522780cfe
📚Fix comment specifying the default engineVersion. (#1450)
Signed-off-by: Tony Worthit <868644+TonyLovesDevOps@users.noreply.github.com>

Signed-off-by: Tony Worthit <868644+TonyLovesDevOps@users.noreply.github.com>
2022-08-12 14:42:40 -03:00

39 lines
1,018 B
YAML

{% raw %}
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: template
spec:
refreshInterval: 1h
secretStoreRef:
name: secretstore-sample
kind: SecretStore
target:
name: secret-to-be-created
# v2 is the default engineVersion in external-secrets.io/v1beta1
# v1 is the default engineVersion in external-secrets.io/v1alpha1 (deprecated)
engineVersion: v1
# this is how the Kind=Secret will look like
template:
type: kubernetes.io/tls
data:
# multiline string
config: |
datasources:
- name: Graphite
type: graphite
access: proxy
url: http://localhost:8080
password: "{{ .password | toString }}" # <-- convert []byte to string
user: "{{ .user | toString }}" # <-- convert []byte to string
data:
- secretKey: user
remoteRef:
key: /grafana/user
- secretKey: password
remoteRef:
key: /grafana/password
{% endraw %}