summaryrefslogtreecommitdiffstats
path: root/kubernetes/common/postgres/templates/pv-primary.yaml
diff options
context:
space:
mode:
authorBorislav Glozman <Borislav.Glozman@amdocs.com>2020-01-26 07:36:14 +0000
committerGerrit Code Review <gerrit@onap.org>2020-01-26 07:36:14 +0000
commitff02910af1fc203e342e621dd4547d51f87e9e9f (patch)
tree16b5d7226a7e510290daac6dd08c01888d334c78 /kubernetes/common/postgres/templates/pv-primary.yaml
parent9c39401bac43746619482aee239b88db4d2d85e2 (diff)
parentb20067e569ff2ee59b59170089ba1b1efd322acb (diff)
Merge "[COMMON] Fix PV/PVC for postgres"
Diffstat (limited to 'kubernetes/common/postgres/templates/pv-primary.yaml')
-rw-r--r--kubernetes/common/postgres/templates/pv-primary.yaml2
1 files changed, 2 insertions, 0 deletions
diff --git a/kubernetes/common/postgres/templates/pv-primary.yaml b/kubernetes/common/postgres/templates/pv-primary.yaml
index 096f0c9d2b..1764868ffc 100644
--- a/kubernetes/common/postgres/templates/pv-primary.yaml
+++ b/kubernetes/common/postgres/templates/pv-primary.yaml
@@ -14,6 +14,7 @@
# # limitations under the License.
*/}}
{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}}
+{{- if include "common.needPV" . -}}
kind: PersistentVolume
apiVersion: v1
metadata:
@@ -35,3 +36,4 @@ spec:
hostPath:
path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ .Release.Name }}/{{ .Values.persistence.mountSubPath }}/primary
{{- end -}}
+{{- end -}}