Commit 819f6d38 by mustache1up

Add onDelete support to helm chart

parent 487b9092
...@@ -20,6 +20,9 @@ parameters: ...@@ -20,6 +20,9 @@ parameters:
{{- if .Values.storageClass.pathPattern }} {{- if .Values.storageClass.pathPattern }}
pathPattern: "{{ .Values.storageClass.pathPattern }}" pathPattern: "{{ .Values.storageClass.pathPattern }}"
{{- end }} {{- end }}
{{- if .Values.storageClass.onDelete }}
onDelete: "{{ .Values.storageClass.onDelete }}"
{{- end }}
{{- if .Values.nfs.mountOptions }} {{- if .Values.nfs.mountOptions }}
mountOptions: mountOptions:
{{- range .Values.nfs.mountOptions }} {{- range .Values.nfs.mountOptions }}
......
...@@ -35,6 +35,11 @@ storageClass: ...@@ -35,6 +35,11 @@ storageClass:
# When set to false your PVs will not be archived by the provisioner upon deletion of the PVC. # When set to false your PVs will not be archived by the provisioner upon deletion of the PVC.
archiveOnDelete: true archiveOnDelete: true
# If it exists and has a delete value, delete the directory, if it exists and has a retain value, save the directory.
# Overrides archiveOnDelete.
# Ignored if value not set.
onDelete:
# Specifies a template for creating a directory path via PVC metadata's such as labels, annotations, name or namespace. # Specifies a template for creating a directory path via PVC metadata's such as labels, annotations, name or namespace.
# Ignored if value not set. # Ignored if value not set.
pathPattern: pathPattern:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment