We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32bb173 commit f0b1604Copy full SHA for f0b1604
hack/deploy-openshift-cluster.sh
@@ -39,6 +39,13 @@ fi
39
40
if [ -n "${OPENSHIFT_INSTALLER:-}" -a -x "${OPENSHIFT_INSTALLER:-}" ] ; then
41
INSTALLER=$OPENSHIFT_INSTALLER
42
+elif [ -n "${OPENSHIFT_INSTALLER_URL:-}" ] ; then
43
+ INSTALLER=$installdir/openshift-install
44
+ pushd $WORKDIR > /dev/null
45
+ curl -s -L -o openshift-installer.tar.gz "$OPENSHIFT_INSTALLER_URL"
46
+ tar xfz openshift-installer.tar.gz
47
+ mv openshift-install $INSTALLER
48
+ popd > /dev/null
49
elif [ -n "${OPENSHIFT_INSTALL_VERSION:-}" ] ; then
50
# download and use specific version
51
INSTALLER=$installdir/openshift-install
0 commit comments