mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 14:57:16 +08:00
* [bitnami/mongodb-sharded] Allow only deploying mongos. * update production * Fix helper * [bitnami/mongodb-sharded] Update components versions Signed-off-by: Bitnami Containers <containers@bitnami.com> Co-authored-by: Bitnami Containers <containers@bitnami.com>
11 lines
426 B
YAML
11 lines
426 B
YAML
{{- if and .Values.shards .Values.shardsvr.dataNode.config }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "mongodb-sharded.fullname" . }}-shardsvr-data
|
|
labels: {{- include "mongodb-sharded.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: shardsvr
|
|
data:
|
|
mongodb.conf: |-
|
|
{{- include "mongodb-sharded.tplValue" (dict "value" .Values.shardsvr.dataNode.config "context" $) | indent 4 }}
|
|
{{- end }} |