argo-cd/hack/installers/install-ksonnet-linux.sh
2019-10-15 09:15:33 -07:00

8 lines
305 B
Bash
Executable file

#!/bin/bash
set -eux -o pipefail
[ -e $DOWNLOADS/ks.tar.gz ] || curl -sLf --retry 3 -o $DOWNLOADS/ks.tar.gz https://github.com/ksonnet/ksonnet/releases/download/v0.13.1/ks_0.13.1_linux_amd64.tar.gz
tar -C /tmp -xf $DOWNLOADS/ks.tar.gz
cp /tmp/ks_0.13.1_linux_amd64/ks $BIN/ks
chmod +x $BIN/ks
ks version