init-scripts-secret.yaml 809 B

1234567891011121314151617
  1. {{- if and .Values.initdbScripts (not .Values.initdbScriptsSecret) }}
  2. apiVersion: v1
  3. kind: Secret
  4. metadata:
  5. name: {{ printf "%s-init-scripts" (include "common.names.fullname" .) }}
  6. namespace: {{ include "common.names.namespace" . | quote }}
  7. labels: {{- include "common.labels.standard" . | nindent 4 }}
  8. app.kubernetes.io/component: clickhouse
  9. {{- if .Values.commonLabels }}
  10. {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
  11. {{- end }}
  12. {{- if .Values.commonAnnotations }}
  13. annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
  14. {{- end }}
  15. stringData:
  16. {{- include "common.tplvalues.render" (dict "value" .Values.initdbScripts "context" .) | nindent 2 }}
  17. {{- end }}