jpsstack
jpsstack

Reputation: 1291

Istio installation failed

I followed the instructions on https://github.com/IBM/cloud-native-starter/blob/master/documentation/IKSDeployment.md on my Mac, Kubernetes is running on IBM Cloud.

The command

$ for i in install/kubernetes/helm/istio-init/files/crd*yaml; do kubectl apply -f $i; done

hangs/does not return.

Couldn't validate the istio installation either:

$ istioctl verify-install
Error: unknown command "verify-install" for "istioctl"
Run 'istioctl --help' for usage.

Upvotes: 1

Views: 435

Answers (2)

Thomas Suedbroecker
Thomas Suedbroecker

Reputation: 471

We were able to solve to problem by following the steps prerequisites for the workshop: https://github.com/IBM/cloud-native-starter/blob/master/workshop/00-prerequisites.md#361-automated-creation-of-a-cluster-with-istio-for-the-workshop

Upvotes: 1

Jeff Sloyer
Jeff Sloyer

Reputation: 4964

Check out using our managed Istio offering. To install Istio on your Kubernetes cluster in IBM Cloud run one of the following...

  1. Install Istio

    ic ks cluster-addon-enable istio --cluster xxxx

  2. Install Istio with extra (tracing and monitoring)

    ic ks cluster-addon-enable istio-extras --cluster xxxx

  3. Install Istio with Bookinfo

    ic ks cluster-addon-enable istio-sample-bookinfo --cluster xxxx

In the above xxxx is the name of your cluster.

Upvotes: 1

Related Questions