diff options
author | 2019-12-11 14:07:20 +0000 | |
---|---|---|
committer | 2019-12-11 14:07:20 +0000 | |
commit | 289bd43809204ca8e4c0662b06c1c775e6333d8c (patch) | |
tree | 930dc5d3fb89e043ea82179da0139bd4df65e74c /kubernetes/multicloud/charts/multicloud-prometheus/templates/pv.yaml | |
parent | 408d8af2ab72c4697a95176b50443837b5f8fc40 (diff) | |
parent | a1f93014d079919c82738157bf539a5d7b91274a (diff) |
Merge "[Multicloud] Use global storage templates for PVC"
Diffstat (limited to 'kubernetes/multicloud/charts/multicloud-prometheus/templates/pv.yaml')
-rw-r--r-- | kubernetes/multicloud/charts/multicloud-prometheus/templates/pv.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kubernetes/multicloud/charts/multicloud-prometheus/templates/pv.yaml b/kubernetes/multicloud/charts/multicloud-prometheus/templates/pv.yaml index 961b6bba63..6a75441843 100644 --- a/kubernetes/multicloud/charts/multicloud-prometheus/templates/pv.yaml +++ b/kubernetes/multicloud/charts/multicloud-prometheus/templates/pv.yaml @@ -15,8 +15,8 @@ */}} {{- if .Values.global.prometheus.enabled -}} - {{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}} +{{- if eq "True" (include "common.needPV" .) -}} kind: PersistentVolume apiVersion: v1 metadata: @@ -33,9 +33,10 @@ spec: storage: {{ .Values.persistence.size}} accessModes: - {{ .Values.persistence.accessMode }} + storageClassName: "{{ include "common.fullname" . }}-data" persistentVolumeReclaimPolicy: {{ .Values.persistence.volumeReclaimPolicy }} hostPath: path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountSubPath }} {{- end -}} - -{{- end -}}
\ No newline at end of file +{{- end -}} +{{- end -}} |