mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
helm: fix seLinuxMount option for csi driver
This commit fixes the typo from `.Values.seLinuxMount` to `.Values.CSIDriver.seLinuxMount` used in helm charts. Signed-off-by: Praveen M <m.praveen@ibm.com>
This commit is contained in:
parent
3df396e6f1
commit
33a888f9ec
@ -12,6 +12,6 @@ spec:
|
|||||||
attachRequired: false
|
attachRequired: false
|
||||||
podInfoOnMount: false
|
podInfoOnMount: false
|
||||||
fsGroupPolicy: {{ .Values.CSIDriver.fsGroupPolicy }}
|
fsGroupPolicy: {{ .Values.CSIDriver.fsGroupPolicy }}
|
||||||
{{- if and (semverCompare ">= 1.25.x" .Capabilities.KubeVersion.Version) .Values.seLinuxMount }}
|
{{- if and (semverCompare ">= 1.25.x" .Capabilities.KubeVersion.Version) .Values.CSIDriver.seLinuxMount }}
|
||||||
seLinuxMount: true
|
seLinuxMount: true
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -12,6 +12,6 @@ spec:
|
|||||||
attachRequired: true
|
attachRequired: true
|
||||||
podInfoOnMount: false
|
podInfoOnMount: false
|
||||||
fsGroupPolicy: {{ .Values.CSIDriver.fsGroupPolicy }}
|
fsGroupPolicy: {{ .Values.CSIDriver.fsGroupPolicy }}
|
||||||
{{- if and (semverCompare ">= 1.25.x" .Capabilities.KubeVersion.Version) .Values.seLinuxMount }}
|
{{- if and (semverCompare ">= 1.25.x" .Capabilities.KubeVersion.Version) .Values.CSIDriver.seLinuxMount }}
|
||||||
seLinuxMount: true
|
seLinuxMount: true
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
Loading…
Reference in New Issue
Block a user