From b198c2211d54bbad4149ff6bb668e544c8626d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Berkay=20Tekin=20=C3=96z?= Date: Wed, 20 Mar 2024 16:05:02 +0300 Subject: [PATCH] Fix missing quotes on storage class is default annotation (#7) * Fix missing quotes on storage class is default annotation * Do not change appVersion, just the chart version --- deploy/charts/rawfile-csi/Chart.yaml | 2 +- deploy/charts/rawfile-csi/templates/02-storageclass.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/charts/rawfile-csi/Chart.yaml b/deploy/charts/rawfile-csi/Chart.yaml index 3896e28..b2448ab 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 +version: 0.8.1 appVersion: 0.8.0 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 }}