mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-08 15:30:21 +00:00
dea07aa184
Signed-off-by: BOSSER, Bastien <bastien.bosser@atos.net>
20 lines
617 B
YAML
20 lines
617 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 }}
|
|
{{- with .Values.commonLabels }}{{ toYaml . | trim | nindent 4 }}{{- end }}
|
|
data:
|
|
config.json: |-
|
|
{{ toJson .Values.csiConfig | indent 4 }}
|
|
cluster-mapping.json: |-
|
|
{{ toJson .Values.csiMapping | indent 4 }}
|
|
{{- end }}
|