mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
d321663872
added template changes for the clusterID and poolID,fsID mapping details for the pod templates. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
19 lines
539 B
YAML
19 lines
539 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 }}
|