Skip to content

Commit

Permalink
Update install_dependencies.sh
Browse files Browse the repository at this point in the history
Signed-off-by: Kjeld Schouten <[email protected]>
  • Loading branch information
PrivatePuffin authored Oct 19, 2024
1 parent f851220 commit d0e0dac
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/scripts/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,17 +67,16 @@ fi

if [[ "$curr_chart" != "charts/system/traefik-crds" ]]; then
echo "Installing traefik-crds chart"
helm install traefik oci://tccr.io/truecharts/traefik-crds --namespace traefik-crds --create-namespace --wait
helm install traefik oci://tccr.io/truecharts/traefik-crds --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install traefik-crds chart"
exit 1
fi
echo "Done installing traefik-crds chart"
fi

if [[ "$curr_chart" == "charts/system/intel-device-plugins-operator" ]]; then
echo "Installing cert-manager chart"
helm install traefik oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install cert-manager chart"
exit 1
Expand All @@ -87,7 +86,7 @@ fi

if [[ "$curr_chart" == "charts/premium/kubernetes-dashboard" ]]; then
echo "Installing metrics-server chart"
helm install traefik oci://tccr.io/truecharts/metrics-server --namespace cert-manager --create-namespace --wait
helm install metrics-server oci://tccr.io/truecharts/metrics-server --namespace metrics-server --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install metrics-server chart"
exit 1
Expand Down

0 comments on commit d0e0dac

Please sign in to comment.