diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2019-07-19 19:10:07 +0200 |
---|---|---|
committer | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2019-07-21 13:17:00 +0200 |
commit | b7f08110865e5e79cf018a6ab9d80f3e7dec20af (patch) | |
tree | d44a3d25612af2cbd9db945571595eed759a6178 /test/security/k8s/tools/dublin/get_rke.sh | |
parent | 961b6441342214281379cf880eacc835aea2bc9c (diff) |
k8s: Add virtual environment for Dublin
Default cluster nodes customization scripts were extracted in the same
manner as those for Casablanca release [1]. Constraints still apply.
[1] SHA-1: ea8bc1a719a36c89e7eae42080b1835e5ef0c28d
(Change-Id: I57f9f3caac0e8b391e9ed480f6bebba98e006882)
Issue-ID: SECCOM-235
Change-Id: I54ada5fade3b984dedd1715f20579e3ce901faa3
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
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" |