From e4cbbdc8f4f5c501e23b57218f18c68334e06631 Mon Sep 17 00:00:00 2001 From: Keshav Mishra Date: Mon, 11 Dec 2023 18:41:16 +0530 Subject: [PATCH] [DSD-3973] update postgres to stable version Signed-off-by: Keshav Mishra --- deployment/v3/external/postgres/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/v3/external/postgres/install.sh b/deployment/v3/external/postgres/install.sh index ca0df2085..960578d03 100755 --- a/deployment/v3/external/postgres/install.sh +++ b/deployment/v3/external/postgres/install.sh @@ -15,7 +15,7 @@ kubectl label ns $NS istio-injection=enabled --overwrite function installing_postgres() { echo Installing Postgres - helm -n $NS install postgres bitnami/postgresql --version 13.1.5 -f values.yaml --wait + helm -n $NS install postgres bitnami/postgresql --version 12.11.1 -f values.yaml --wait echo Installed Postgres echo Installing gateways and virtual services @@ -30,4 +30,4 @@ set -o errexit ## set -e : exit the script if any statement returns a non-true set -o nounset ## set -u : exit the script if you try to use an uninitialised variable set -o errtrace # trace ERR through 'time command' and other functions set -o pipefail # trace ERR through pipes -installing_postgres # calling function \ No newline at end of file +installing_postgres # calling function