From: garciadeblas Date: Mon, 30 Sep 2024 20:52:54 +0000 (+0200) Subject: Include argo client installation for mgmt cluster in setup-cli-tools.sh X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=refs%2Fchanges%2F06%2F14606%2F2;p=osm%2Fdevops.git Include argo client installation for mgmt cluster in setup-cli-tools.sh Change-Id: I9b7b305eba65d80a6087250d00260903fc65393b Signed-off-by: garciadeblas --- diff --git a/installers/mgmt-cluster/setup-cli-tools.sh b/installers/mgmt-cluster/setup-cli-tools.sh index 284de744..0b7210e0 100755 --- a/installers/mgmt-cluster/setup-cli-tools.sh +++ b/installers/mgmt-cluster/setup-cli-tools.sh @@ -51,6 +51,13 @@ curl -s https://fluxcd.io/install.sh | sudo bash # Autocompletion . <(flux completion bash) +# Argo client +ARGO_VERSION="v3.5.7" +curl -sLO https://github.com/argoproj/argo-workflows/releases/download/${ARGO_VERSION}/argo-linux-amd64.gz +gunzip argo-linux-amd64.gz +chmod +x argo-linux-amd64 +sudo mv ./argo-linux-amd64 /usr/local/bin/argo + # Kustomize KUSTOMIZE_VERSION="5.4.3" curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash -s -- ${KUSTOMIZE_VERSION}