Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

secrets.yaml 631 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. {{- if .Values.externalSecrets.enabled }}
  2. apiVersion: "external-secrets.io/v1beta1"
  3. kind: ExternalSecret
  4. metadata:
  5. labels: {{ include "labels.standard" . | nindent 4 }}
  6. name: {{ include "name" $ }}-external-secret
  7. namespace: {{ $.Release.Namespace }}
  8. spec:
  9. refreshInterval: 1h
  10. secretStoreRef:
  11. name: {{ .Values.externalSecrets.secretStoreName }}
  12. kind: SecretStore
  13. target:
  14. name: {{ .Values.externalSecrets.secretName }}
  15. data:
  16. {{- range $key, $value := .Values.externalSecrets.parameters }}
  17. - secretKey: {{ $key | quote }}
  18. remoteRef:
  19. key: {{ $value | quote }}
  20. {{- end }}
  21. {{- end }}
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...