mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
7 lines
344 B
Bash
Executable file
7 lines
344 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
[ -e $DOWNLOADS/helm2.tar.gz ] || curl -sLf --retry 3 -o $DOWNLOADS/helm2.tar.gz https://storage.googleapis.com/kubernetes-helm/helm-v2.15.2-linux-$ARCHITECTURE.tar.gz
|
|
mkdir -p /tmp/helm2 && tar -C /tmp/helm2 -xf $DOWNLOADS/helm2.tar.gz
|
|
cp /tmp/helm2/linux-$ARCHITECTURE/helm $BIN/helm2
|
|
helm2 version --client
|