Update install_dependencies.sh

Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
This commit is contained in:
Kjeld Schouten 2024-02-27 19:37:19 +01:00 committed by GitHub
parent c173751af9
commit d6731031c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 10 deletions

View File

@ -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 \