From d6731031c5ff88e9410dc770276d422a08a45105 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Tue, 27 Feb 2024 19:37:19 +0100 Subject: [PATCH] Update install_dependencies.sh Signed-off-by: Kjeld Schouten --- .github/scripts/install_dependencies.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/scripts/install_dependencies.sh b/.github/scripts/install_dependencies.sh index 00537d29b0b..dde17d3a89e 100755 --- a/.github/scripts/install_dependencies.sh +++ b/.github/scripts/install_dependencies.sh @@ -31,16 +31,6 @@ if [[ "$curr_chart" == "charts/enterprise/clusterissuer" ]]; then echo "Done installing cert-manager chart" fi -if [[ "$curr_chart" != "charts/operators/cloudnative-pg" ]]; then - echo "Installing cloudnative-pg chart" - helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait - if [[ "$?" != "0" ]]; then - echo "Failed to install cloudnative-pg chart" - exit 1 - fi - echo "Done installing cloudnative-pg chart" -fi - if [[ "$curr_chart" != "charts/operators/prometheus-operator" ]]; then echo "Installing prometheus-operator chart" helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait @@ -51,6 +41,16 @@ if [[ "$curr_chart" != "charts/operators/prometheus-operator" ]]; then echo "Done installing prometheus-operator chart" fi +if [[ "$curr_chart" != "charts/operators/cloudnative-pg" ]]; then + echo "Installing cloudnative-pg chart" + helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait + if [[ "$?" != "0" ]]; then + echo "Failed to install cloudnative-pg chart" + exit 1 + fi + echo "Done installing cloudnative-pg chart" +fi + if [[ "$curr_chart" != "charts/enterprise/traefik" ]]; then echo "Installing traefik chart" helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait \