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

Commit 7207f8e

Browse files
committed
Fix quotes and install istio CRD's separately
1 parent 7304d5a commit 7207f8e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

etc/scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ if [ "$1" != "-q" ]; then
77
echo " This script will attempt to install istio, knative, and OLM in your "
88
echo " Kubernetes/OpenShift cluster."
99
echo
10-
echo " If targeting OpenShift, a recent version of `oc` should be available"
11-
echo " in your PATH. Otherwise, `kubectl` will be used."
10+
echo " If targeting OpenShift, a recent version of 'oc' should be available"
11+
echo " in your PATH. Otherwise, 'kubectl' will be used."
1212
echo
1313
echo " If using OpenShift 3.11 and your cluster isn't minishift, ensure"
1414
echo " \$KUBE_SSH_KEY and \$KUBE_SSH_USER are set"

etc/scripts/installation-functions.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ function install_olm {
177177
function install_istio {
178178
if check_minikube; then
179179
echo "Detected minikube - incompatible with Maistra operator, so installing upstream istio."
180+
$CMD apply -f "https://github.com/knative/serving/releases/download/${KNATIVE_SERVING_VERSION}/istio-crds.yaml" && \
180181
$CMD apply -f "https://github.com/knative/serving/releases/download/${KNATIVE_SERVING_VERSION}/istio.yaml"
181182
wait_for_all_pods istio-system
182183
else

0 commit comments

Comments
 (0)