Reputation: 1291
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
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
Reputation: 4964
Check out using our managed Istio offering. To install Istio on your Kubernetes cluster in IBM Cloud run one of the following...
Install Istio
ic ks cluster-addon-enable istio --cluster xxxx
Install Istio with extra (tracing and monitoring)
ic ks cluster-addon-enable istio-extras --cluster xxxx
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