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