mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 14:57:16 +08:00
* Adding commonAnnotations issue 6264 https://github.com/bitnami/charts/issues/6264 * Updating Chart.yaml version README.md * Updating chart version * Update Chart.yaml Include new line Co-authored-by: Shubham Sinha <shubham.sinha@volantetech.com> Co-authored-by: alvneiayu <alvaron@vmware.com>
16 lines
602 B
YAML
16 lines
602 B
YAML
{{- if (include "mongodb.createConfigmap" .) }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "mongodb.fullname" . }}
|
|
namespace: {{ include "mongodb.namespace" . }}
|
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
|
app.kubernetes.io/component: mongodb
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
mongodb.conf: |-
|
|
{{- include "common.tplvalues.render" (dict "value" .Values.configuration "context" $) | nindent 4 }}
|
|
{{- end }}
|