mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
7 lines
359 B
Bash
Executable file
7 lines
359 B
Bash
Executable file
#!/bin/bash
|
|
set -eux -o pipefail
|
|
|
|
# NOTE: keep the version synced with https://storage.googleapis.com/kubernetes-release/release/stable.txt
|
|
[ -e $DOWNLOADS/kubectl ] || curl -sLf --retry 3 -o $DOWNLOADS/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.14.0/bin/linux/$ARCHITECTURE/kubectl
|
|
cp $DOWNLOADS/kubectl $BIN/
|
|
chmod +x $BIN/kubectl
|