persistence vs persistentVolume variable naming
Closed this issue · 1 comments
ivankennethwang commented
In commit 1cd50e4, the chart was changed but the values.yaml wasn't.
I believe it should have a change such as:
- {{- if .Values.persistentVolume.storageClassName }}
- {{- if (eq "-" .Values.persistentVolume.storageClassName) }}
+ {{- if .Values.persistence.storageClassName }}
+ {{- if (eq "-" .Values.persistence.storageClassName) }}
- storageClassName: "{{ .Values.persistentVolume.storageClassName }}"
+ storageClassName: "{{ .Values.persistence.storageClassName }}"```
lwolf commented
thanks, I somehow missed that inconsistency