summaryrefslogtreecommitdiffstats
path: root/kubernetes/common/postgres-init/templates
diff options
context:
space:
mode:
authorJack Lucas <jflos@sonoris.net>2022-06-22 14:53:02 +0000
committerGerrit Code Review <gerrit@onap.org>2022-06-22 14:53:02 +0000
commit2b4c549bbfdb432931b5e9f2b71b547978c7c9a6 (patch)
treebd09ffe7448ed4970400873934f795e259977faf /kubernetes/common/postgres-init/templates
parentfa07f1fcd002d5074e8060715e5806fa63051095 (diff)
parent0239815905443edeff2d80461137efcdec53931e (diff)
Merge "[COMMON][POSTGRES] Make DB init jobs ServiceMesh compatible"
Diffstat (limited to 'kubernetes/common/postgres-init/templates')
-rw-r--r--kubernetes/common/postgres-init/templates/job.yaml3
1 files changed, 3 insertions, 0 deletions
diff --git a/kubernetes/common/postgres-init/templates/job.yaml b/kubernetes/common/postgres-init/templates/job.yaml
index 01151bb4a9..d9a7386f83 100644
--- a/kubernetes/common/postgres-init/templates/job.yaml
+++ b/kubernetes/common/postgres-init/templates/job.yaml
@@ -59,6 +59,8 @@ spec:
}
export PG_PASSWORD=`prepare_password $PG_PASSWORD_INPUT`;
export PG_ROOT_PASSWORD=`prepare_password $PG_ROOT_PASSWORD_INPUT`;
+ {{- if include "common.onServiceMesh" . }}
+ echo "waiting 15s for istio side cars to be up"; sleep 15s;{{- end }}
cd /config-input && for PFILE in `ls -1 .`; do envsubst <${PFILE} >/config/${PFILE}; done;
psql "postgresql://postgres:$PG_ROOT_PASSWORD@$PG_HOST" < /config/setup.sql
env:
@@ -98,6 +100,7 @@ spec:
name: pgconf
resources:
{{ include "common.resources" . | indent 12 }}
+ {{ include "common.waitForJobContainer" . | indent 6 | trim }}
{{- if .Values.nodeSelector }}
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 10 }}