From 1c5fddc76e96b0de63d5e083ec1ec9de0544315d Mon Sep 17 00:00:00 2001 From: Steven Hardy Date: Tue, 16 Jul 2019 13:55:59 +0100 Subject: [PATCH] WIP use kni-installer/pr100 --- ocp_install_env.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ocp_install_env.sh b/ocp_install_env.sh index a52bcafa8..946745d2c 100644 --- a/ocp_install_env.sh +++ b/ocp_install_env.sh @@ -8,6 +8,7 @@ export CLUSTER_DOMAIN="${CLUSTER_NAME}.${BASE_DOMAIN}" export SSH_PUB_KEY="${SSH_PUB_KEY:-$(cat $HOME/.ssh/id_rsa.pub)}" export EXTERNAL_SUBNET="192.168.111.0/24" export DNS_VIP=${DNS_VIP:-"192.168.111.2"} + export KNI_INSTALL_FROM_GIT=true # # See https://origin-release.svc.ci.openshift.org/ for release details @@ -38,7 +39,7 @@ function extract_installer() { function clone_installer() { # Clone repo, if not already present if [[ ! -d $OPENSHIFT_INSTALL_PATH ]]; then - sync_repo_and_patch go/src/github.com/openshift-metalkube/kni-installer https://github.com/openshift-metalkube/kni-installer.git + sync_repo_and_patch go/src/github.com/openshift-metalkube/kni-installer https://github.com/openshift-metalkube/kni-installer.git https://patch-diff.githubusercontent.com/raw/openshift-metal3/kni-installer/pull/100.patch fi }