cda359ef1f
The PS adds Ceph CSI plugin (RBD only) Change-Id: I3ddc69e49d12ff178263f38ac10aff90bb82b902
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
{{/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
{{- define "ceph.configmap.etc.csi" }}
|
|
{{- $configMapName := index . 0 }}
|
|
{{- $envAll := index . 1 }}
|
|
{{- with $envAll }}
|
|
|
|
{{- if and (.Values.deployment.ceph) (.Values.deployment.csi) }}
|
|
|
|
{{- if empty .Values.conf.ceph.global.mon_host -}}
|
|
{{- $monHost := tuple "ceph_mon" "internal" "mon" . | include "helm-toolkit.endpoints.host_and_port_endpoint_uri_lookup" }}
|
|
{{- $_ := $monHost | set .Values.conf.ceph.global "mon_host" -}}
|
|
{{- end -}}
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
data:
|
|
config.json: |-
|
|
[
|
|
{
|
|
"clusterID": {{ .Release.Namespace | quote }},
|
|
"monitors": [
|
|
{{ .Values.conf.ceph.global.mon_host | quote }}
|
|
]
|
|
}
|
|
]
|
|
metadata:
|
|
name: ceph-csi-config
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- if .Values.manifests.configmap_etc }}
|
|
{{- list .Values.storageclass.rbd.ceph_configmap_name . | include "ceph.configmap.etc.csi" }}
|
|
{{- end }}
|