You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
644 B
17 lines
644 B
{{- if .Values.storageClass.enabled -}}
|
|
apiVersion: storage.k8s.io/v1
|
|
kind: StorageClass
|
|
metadata:
|
|
name: {{ .Values.storageClass.name | quote }}
|
|
annotations:
|
|
storageclass.kubernetes.io/is-default-class: {{ .Values.storageClass.isDefault | quote }}
|
|
provisioner: csi.vsphere.vmware.com
|
|
allowVolumeExpansion: {{ .Values.storageClass.allowVolumeExpansion }}
|
|
parameters:
|
|
{{- if .Values.storageClass.datastoreURL }}
|
|
datastoreURL: {{ .Values.storageClass.datastoreURL | quote }}
|
|
{{- end }}
|
|
{{- if .Values.storageClass.storagePolicyName }}
|
|
storagepolicyname: {{ .Values.storageClass.storagePolicyName | quote }}
|
|
{{- end }}
|
|
{{- end -}}
|
|
|