mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
15 lines
350 B
Bash
Executable File
15 lines
350 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# USAGE: ./get-bootkube bin
|
|
# Get the bootkube tool
|
|
set -eu
|
|
|
|
DEST=${1:-"bin"}
|
|
VERSION="v0.6.0"
|
|
|
|
URL="https://github.com/kubernetes-incubator/bootkube/releases/download/${VERSION}/bootkube.tar.gz"
|
|
|
|
mkdir -p $DEST
|
|
curl -L -O ${URL}
|
|
tar -C $DEST --strip-components=2 -xzf bootkube.tar.gz bin/linux/bootkube
|
|
chmod +x ${DEST}/bootkube
|