Skip to content

Commit

Permalink
Fix missing quotes on storage class is default annotation (#7)
Browse files Browse the repository at this point in the history
* Fix missing quotes on storage class is default annotation

* Do not change appVersion, just the chart version
  • Loading branch information
berkayoz committed Mar 20, 2024
1 parent d2eb727 commit b198c22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy/charts/rawfile-csi/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions deploy/charts/rawfile-csi/templates/02-storageclass.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
{{- end }}

0 comments on commit b198c22

Please sign in to comment.