f190ea88 by Adam Heath

Make it easy to disable local-path-provisioner while still having it

inside an outer helmfile.
1 parent d2643671
1 local-path-provisioner:
2 enabled: true
1 namespace: kube-system 3 namespace: kube-system
2 storageClass: 4 storageClass:
3 default: true 5 default: true
......
...@@ -10,6 +10,7 @@ releases: ...@@ -10,6 +10,7 @@ releases:
10 - name: local-path-provisioner 10 - name: local-path-provisioner
11 namespace: {{ .Values.namespace }} 11 namespace: {{ .Values.namespace }}
12 chart: local-path-provisioner/local-path-provisioner 12 chart: local-path-provisioner/local-path-provisioner
13 condition: local-path-provisioner.enabled
13 values: 14 values:
14 - storageClass: 15 - storageClass:
15 defaultClass: {{ .Values.storageClass.default }} 16 defaultClass: {{ .Values.storageClass.default }}
......