This commit is contained in:
cătălin 2024-12-10 21:01:36 +01:00
commit fb72e5f1c2
No known key found for this signature in database
46 changed files with 3027 additions and 742 deletions

View file

@ -0,0 +1,14 @@
{{- if .Values.secret }}
apiVersion: v1
kind: Secret
metadata:
name: {{ .Values.secret.secretName }}
labels:
{{- include "your-chart.labels" . | nindent 4 }}
type: Opaque
stringData:
# Add your secret key-value pairs here
{{- with .Values.secret.data }}
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end }}