b87bb1e724835a5a22b4e113cb834e5dcb688e0e
[it/otf.git] / otf-helm / otf / charts / databases / mongodb / templates / configmap.yaml
1 {{- if .Values.configmap }}
2 apiVersion: v1
3 kind: ConfigMap
4 metadata:
5   labels:
6     app: {{ template "mongodb.name" . }}
7     chart: {{ template "mongodb.chart" . }}
8     heritage: {{ .Release.Service }}
9     release: {{ .Release.Name }}
10   name: {{ template "mongodb.fullname" . }}
11   namespace: {{.Values.namespace }}
12 data:
13   mongodb.conf: |-
14 {{ toYaml .Values.configmap | indent 4 }}
15 {{- end }}