diff options
Diffstat (limited to 'test/security/k8s/tools/dublin/get_rke.sh')
-rwxr-xr-x | test/security/k8s/tools/dublin/get_rke.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/security/k8s/tools/dublin/get_rke.sh b/test/security/k8s/tools/dublin/get_rke.sh new file mode 100755 index 000000000..ffa5c707e --- /dev/null +++ b/test/security/k8s/tools/dublin/get_rke.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash + +# Constants +DEFAULT_VERSION='v0.2.1' +DEFAULT_ARCH='amd64' +DEFAULT_SYSTEM='linux' + +# Variables +VERSION="${1:-$DEFAULT_VERSION}" +ARCH="${2:-$DEFAULT_ARCH}" +SYSTEM="${3:-$DEFAULT_SYSTEM}" + +BINARY="rke_${SYSTEM}-${ARCH}" +URL="https://github.com/rancher/rke/releases/download/${VERSION}/${BINARY}" + + +# Prerequistes +wget "$URL" +chmod +x "${BINARY}" + +# Installation +echo '# Privilege elevation needed to move RKE binary to /usr/local/bin' +sudo mv "${BINARY}" "/usr/local/bin/${BINARY%%_*}" # this also renames binary to "rke" |