Hi, I am trying to install upstream Istio into OpenShift 4.3.
I have found some links in Istio site where they explain how to do it, but some pods are stuck at ContainerCreating status:
istio-citadel-7bcc69d486-v6qcf 0/1 ContainerCreating 0 3m25s
istio-galley-79c57df7b7-x2zkw 0/2 ContainerCreating 0 3m24s
istio-ingressgateway-7d897944-bxg29 0/1 ContainerCreating 0 3m25s
istio-pilot-565b4c4c9c-7sfcd 0/2 Pending 0 3m24s
istio-policy-76f487b7df-hddrq 0/2 ContainerCreating 0 3m20s
istio-sidecar-injector-79ccdf54c4-pm7vw 0/1 ContainerCreating 0 3m24s
istio-telemetry-864654ddd8-p2s9g 0/2 Pending 0 3m25s
prometheus-66c5887c86-krgwq 0/1 ContainerCreating 0 3m25s
I have waited like 5 minutes but didn’t succeed, checking the events it seem some kind of permission errors with the network.
Then the links I found are:
The OpenShift 4.3 is installed in Azure and after the installation I logged with admin account and I run:
./oc adm policy add-scc-to-group anyuid system:serviceaccounts -n istio-system
istioctl manifest apply --set values.global.proxy.privileged=true --set cni.components.cni.namespace=kube-system --set values.cni.cniBinDir=/var/lib/cni/bin --set values.cni.cniConfDir=/var/run/multus/cni/net.d --set cni.enabled=true
So I am enabling the CNI as well.
But not success, do anyone have experience on installing Istio in OpenShift 4.1, 4.2, or 4.3 that can tell me if I need to do anything else before/after?
Thank you very much.