diff options
author | Mandeep Khinda <Mandeep.Khinda@amdocs.com> | 2018-05-08 02:05:43 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-05-08 02:05:43 +0000 |
commit | 0ebbd987937d747a56efc59f00772521f583668c (patch) | |
tree | 973f9a3c24cb09ecc1602fbba1477c5a5df06522 /kubernetes/common/postgres/templates/statefulset.yaml | |
parent | 1d0467ce4ce990ed2ae9cd333f969bb6c2d742c6 (diff) | |
parent | 56857c4646ffc7d77b7a5908d4c9e18b9206a7dd (diff) |
Merge "Fix persistent volume to be mapped to Release.Name"
Diffstat (limited to 'kubernetes/common/postgres/templates/statefulset.yaml')
-rw-r--r-- | kubernetes/common/postgres/templates/statefulset.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/common/postgres/templates/statefulset.yaml b/kubernetes/common/postgres/templates/statefulset.yaml index e42e9eb924..c3f86748cb 100644 --- a/kubernetes/common/postgres/templates/statefulset.yaml +++ b/kubernetes/common/postgres/templates/statefulset.yaml @@ -126,7 +126,7 @@ spec: path: /etc/localtime - name: {{ include "common.fullname" . }}-init hostPath: - path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ .Release.Namespace }}/{{ .Values.persistence.mountInitPath }} + path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountInitPath }} - name: {{ include "common.fullname" . }}-backup emptyDir: {} #{{ if not .Values.persistence.enabled }} |