From 42843dc98fa6f25e5de75c57039dbc85d1469612 Mon Sep 17 00:00:00 2001 From: William Markito Date: Sun, 18 Nov 2018 23:40:37 -0600 Subject: [PATCH] Using Istio from official minishift-addons repo In order to avoid confusion, removed the use of the local `knative-istio` addon and instead uses the official one from Minishift repo. --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 48b9f0b..4922d6c 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,16 @@ ### Install +Install Istio using the official Minishift addon: + + git clone https://github.com/minishift/minishift-addons "$REPO_DIR/minishift-addons" + minishift addon install "$REPO_DIR/minishift-addons/add-ons/istio" + until minishift addon apply istio; do sleep 1; done + timeout 600 bash -c -- 'until oc get pods -n istio-system | grep openshift-ansible-istio-installer | grep Completed; do sleep 5; oc get pods -n istio-system; done' + + After cloning this repo locally, install your desired addons: - $ minishift addons install minishift-addons/knative-istio $ minishift addons install minishift-addons/knative-build $ minishift addons install minishift-addons/knative-serving $ minishift addons install minishift-addons/knative-eventing