Skip to content
This repository was archived by the owner on Aug 2, 2019. It is now read-only.

Using Istio from official minishift-addons repo #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down