mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
14 lines
463 B
YAML
14 lines
463 B
YAML
{{ if (.Files.Glob "files/docker-entrypoint-initdb.d/*[sh|js|json]") }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "mongodb.fullname" . }}-init-scripts
|
|
labels:
|
|
app: {{ template "mongodb.name" . }}
|
|
chart: {{ template "mongodb.chart" . }}
|
|
release: {{ .Release.Name | quote }}
|
|
heritage: {{ .Release.Service | quote }}
|
|
data:
|
|
{{ tpl (.Files.Glob "files/docker-entrypoint-initdb.d/*[sh|js|json]").AsConfig . | indent 2 }}
|
|
{{ end }}
|