diff --git a/deploy/helm/charts/Chart.yaml b/deploy/helm/charts/Chart.yaml index a79cc8de..1a8b8557 100644 --- a/deploy/helm/charts/Chart.yaml +++ b/deploy/helm/charts/Chart.yaml @@ -4,7 +4,7 @@ description: Helm chart for OpenEBS Dynamic Local PV. For instructions to instal type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 3.4.0 +version: 3.4.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. appVersion: 3.4.0 diff --git a/deploy/helm/charts/templates/hostpath-class.yaml b/deploy/helm/charts/templates/hostpath-class.yaml index 6aabfb77..6dd49d99 100644 --- a/deploy/helm/charts/templates/hostpath-class.yaml +++ b/deploy/helm/charts/templates/hostpath-class.yaml @@ -2,7 +2,7 @@ apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: - name: {{ .Values.hostpathClass.name }} + name: {{ tpl (.Values.hostpathClass.name) .}} annotations: openebs.io/cas-type: local cas.openebs.io/config: | @@ -10,7 +10,7 @@ metadata: value: "hostpath" {{- if or .Values.localpv.basePath .Values.hostpathClass.basePath }} - name: BasePath - value: {{ .Values.hostpathClass.basePath | default .Values.localpv.basePath | quote }} + value: {{ tpl (.Values.hostpathClass.basePath | default .Values.localpv.basePath | quote) . }} {{- end }} {{- if .Values.hostpathClass.nodeAffinityLabels }} - name: NodeAffinityLabels