mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
989905aa9f
When generating csiconfiguration from values the config.json key gets merged with cluster-mapping.json as the config.json toYaml element supresses a newline. This fixes the situation where configuration is generated as shown; ``` data: config.json: |- [{"clusterID":"....","monitors":["..."]}]cluster-mapping.json: |- [] ``` Signed-off-by: Toby Jackson <toby@warmfusion.co.uk>
19 lines
537 B
YAML
19 lines
537 B
YAML
{{- if not .Values.externallyManagedConfigmap }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Values.configMapName | quote }}
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app: {{ include "ceph-csi-rbd.name" . }}
|
|
chart: {{ include "ceph-csi-rbd.chart" . }}
|
|
component: {{ .Values.nodeplugin.name }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
data:
|
|
config.json: |-
|
|
{{ toJson .Values.csiConfig | indent 4 }}
|
|
cluster-mapping.json: |-
|
|
{{ toJson .Values.csiMapping | indent 4 }}
|
|
{{- end }}
|