From 6f4baf34106b24146d2bd641da8e023158440d30 Mon Sep 17 00:00:00 2001 From: Luke Repko Date: Wed, 20 Nov 2024 15:01:24 -0600 Subject: [PATCH] fix(postgres): remove deprecated install script At this time we use the zalando postgres operator, not the old installation method that was in the openstack-helm-infra repository. Removing this install script to avoid confusion. --- bin/install-postgresql.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100755 bin/install-postgresql.sh diff --git a/bin/install-postgresql.sh b/bin/install-postgresql.sh deleted file mode 100755 index b3eff2ac..00000000 --- a/bin/install-postgresql.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -pushd /opt/genestack/submodules/openstack-helm-infra || exit -helm upgrade --install postgresql ./postgresql \ - --namespace=openstack \ - --wait \ - --timeout 10m \ - -f /opt/genestack/base-helm-configs/postgresql/postgresql-helm-overrides.yaml \ - --set endpoints.identity.auth.admin.password="$(kubectl --namespace openstack get secret keystone-admin -o jsonpath='{.data.password}' | base64 -d)" \ - --set endpoints.identity.auth.postgresql.password="$(kubectl --namespace openstack get secret postgresql-identity-admin -o jsonpath='{.data.password}' | base64 -d)" \ - --set endpoints.postgresql.auth.admin.password="$(kubectl --namespace openstack get secret postgresql-db-admin -o jsonpath='{.data.password}' | base64 -d)" \ - --set endpoints.postgresql.auth.exporter.password="$(kubectl --namespace openstack get secret postgresql-db-exporter -o jsonpath='{.data.password}' | base64 -d)" \ - --set endpoints.postgresql.auth.audit.password="$(kubectl --namespace openstack get secret postgresql-db-audit -o jsonpath='{.data.password}' | base64 -d)" -popd || exit