diff --git a/helpers/deploy_postgis.sh b/helpers/deploy_postgis.sh
index fd6193403d0aad3a753f2bf581407967e6ab7c8f..6cc1028eecf889efe76e455721228141b544130b 100755
--- a/helpers/deploy_postgis.sh
+++ b/helpers/deploy_postgis.sh
@@ -34,8 +34,8 @@ echo $sec_info
 auth_sec="${release_name}-postgresql"
 if [[ "$sec_info" != "" ]]; then
     pw=$(kubectl get secret --namespace $ns $auth_sec -o jsonpath="{.data.postgresql-password}" | base64 -d);
-    admin_pw=$(kubectl get secret --namespace $ns $auth_sec -o jsonpath="{.data.postgresql-postgres-password}" | base64 -d);
-    EXTRA_ARGS="--set postgresqlPassword=$pw --set postgresqlPostgresPassword=$admin_pw";
+#    admin_pw=$(kubectl get secret --namespace $ns $auth_sec -o jsonpath="{.data.postgresql-postgres-password}" | base64 -d);
+    EXTRA_ARGS="--set postgresqlPassword=$pw";
 fi
 echo "Adding extra arguments: $EXTRA_ARGS"
 helm repo add bitnami "https://charts.bitnami.com/bitnami"