aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/common/postgres/templates/pv-replica.yaml
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@t-mobile.pl>2024-02-21 19:10:19 +0000
committerGerrit Code Review <gerrit@onap.org>2024-02-21 19:10:19 +0000
commit17ca8751512743a9f8a04e44af79bbfbd988e91e (patch)
treeeb089c3af1353603bf4150a3c7330e8923cb282a /kubernetes/common/postgres/templates/pv-replica.yaml
parent5210a5d2f545a6d5b15363783ec6d7e7ff41c387 (diff)
parent062e7c2a2f0e666ba87d4a0337e5774cf841b3f9 (diff)
Merge "[POSTGRES][COMMON] Add support for postgres operator"
Diffstat (limited to 'kubernetes/common/postgres/templates/pv-replica.yaml')
-rw-r--r--kubernetes/common/postgres/templates/pv-replica.yaml6
1 files changed, 4 insertions, 2 deletions
diff --git a/kubernetes/common/postgres/templates/pv-replica.yaml b/kubernetes/common/postgres/templates/pv-replica.yaml
index d553c36680..af46f611c8 100644
--- a/kubernetes/common/postgres/templates/pv-replica.yaml
+++ b/kubernetes/common/postgres/templates/pv-replica.yaml
@@ -13,6 +13,7 @@
# # See the License for the specific language governing permissions and
# # limitations under the License.
*/}}
+{{- if not .Values.global.postgres.useOperator }}
{{- if and .Values.persistence.enabled (not .Values.persistence.existingClaim) -}}
{{- if include "common.needPV" . -}}
kind: PersistentVolume
@@ -35,5 +36,6 @@ spec:
persistentVolumeReclaimPolicy: {{ .Values.persistence.volumeReclaimPolicy }}
hostPath:
path: {{ .Values.global.persistence.mountPath | default .Values.persistence.mountPath }}/{{ include "common.release" . }}/{{ .Values.persistence.mountSubPath }}/replica
-{{- end -}}
-{{- end -}}
+{{- end }}
+{{- end }}
+{{- end }}