From dd53a7f18805e392e28865f0bc246a8159295e4f Mon Sep 17 00:00:00 2001 From: Berkay Tekin Oz Date: Wed, 20 Mar 2024 13:00:18 +0300 Subject: [PATCH 1/2] Fix missing quotes on storage class is default annotation --- deploy/charts/rawfile-csi/Chart.yaml | 4 ++-- deploy/charts/rawfile-csi/templates/02-storageclass.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/charts/rawfile-csi/Chart.yaml b/deploy/charts/rawfile-csi/Chart.yaml index 3896e28..e93b2ad 100644 --- a/deploy/charts/rawfile-csi/Chart.yaml +++ b/deploy/charts/rawfile-csi/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: rawfile-csi description: RawFile Driver Container Storage Interface type: application -version: 0.8.0 -appVersion: 0.8.0 +version: 0.8.1 +appVersion: 0.8.1 diff --git a/deploy/charts/rawfile-csi/templates/02-storageclass.yaml b/deploy/charts/rawfile-csi/templates/02-storageclass.yaml index 77b4790..8a50f36 100644 --- a/deploy/charts/rawfile-csi/templates/02-storageclass.yaml +++ b/deploy/charts/rawfile-csi/templates/02-storageclass.yaml @@ -4,9 +4,9 @@ kind: StorageClass metadata: name: {{ .Values.storageClass.name }} annotations: - storageclass.kubernetes.io/is-default-class: {{ .Values.storageClass.isDefault }} + storageclass.kubernetes.io/is-default-class: "{{ .Values.storageClass.isDefault }}" provisioner: rawfile.csi.openebs.io reclaimPolicy: {{ .Values.storageClass.reclaimPolicy }} volumeBindingMode: {{ .Values.storageClass.volumeBindingMode }} allowVolumeExpansion: true -{{- end }} \ No newline at end of file +{{- end }} From df63ceaebc6edfd3d884438b7f55f08bd92d30db Mon Sep 17 00:00:00 2001 From: Berkay Tekin Oz Date: Wed, 20 Mar 2024 13:02:16 +0300 Subject: [PATCH 2/2] Do not change appVersion, just the chart version --- deploy/charts/rawfile-csi/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/charts/rawfile-csi/Chart.yaml b/deploy/charts/rawfile-csi/Chart.yaml index e93b2ad..b2448ab 100644 --- a/deploy/charts/rawfile-csi/Chart.yaml +++ b/deploy/charts/rawfile-csi/Chart.yaml @@ -3,4 +3,4 @@ name: rawfile-csi description: RawFile Driver Container Storage Interface type: application version: 0.8.1 -appVersion: 0.8.1 +appVersion: 0.8.0