Created
May 15, 2019 14:04
-
-
Save ironcladlou/0c5c2110a31618381ef31b39465dad88 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
function show_login_help { | |
cat << EOF | |
Log in at https://api.ci.openshift.org/oauth/token/request and try again. | |
EOF | |
exit 1 | |
} | |
LATEST=$(curl -s https://openshift-release.svc.ci.openshift.org/api/v1/releasestream/4.1.0-0.ci/latest | jq -r '.name') | |
VERSION="${VERSION:-$LATEST}" | |
oc --server=https://api.ci.openshift.org registry login || show_login_help | |
DIR=$(mktemp -d) | |
pushd $DIR >/dev/null | |
echo "Downloading $VERSION to $DIR" | |
oc adm release extract --tools registry.svc.ci.openshift.org/ocp/release:$VERSION | |
find $DIR -name '*.tar.gz' -exec tar zxvf {} \; | |
mv $DIR/oc $HOME/bin | |
mv $DIR/openshift-install $HOME/bin | |
popd >/dev/null | |
echo Done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment