mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
14 lines
292 B
Bash
Executable File
14 lines
292 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# USAGE: ./get-kubectl bin
|
|
# Get the kubectl client
|
|
set -eu
|
|
|
|
DEST=${1:-"bin"}
|
|
VERSION="v1.7.7"
|
|
|
|
URL="https://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/linux/amd64/kubectl"
|
|
|
|
mkdir -p ${DEST}
|
|
curl -L -o ${DEST}/kubectl ${URL}
|
|
chmod +x ${DEST}/kubectl
|