We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f655626 commit 951ad20Copy full SHA for 951ad20
charts/cloudconnectors/templates/pv.yaml
@@ -1,3 +1,4 @@
1
+{{- if .Values.storage.customPVEnabled }}
2
apiVersion: v1
3
kind: PersistentVolume
4
metadata:
@@ -14,3 +15,4 @@ spec:
14
15
storageClassName: {{ .Values.storage.storageClassName }}
16
hostPath:
17
path: {{ include "cloudconnectors.storagePath" . }}
18
+{{- end }}
charts/cloudconnectors/values.yaml
@@ -54,6 +54,9 @@ storage:
54
# -- Storage class name of the persistent volume claim
55
storageClassName: ""
56
57
+ # -- Custom persistent volume enabled
58
+ customPVEnabled: false
59
+
60
# -- List of environment variables to set in the container.
61
env:
62
# - name: "AXOROUTER_ENDPOINT"
0 commit comments