During the installation of istio 1.4.6 the istio-telemetry pod goes in CrashBackOff
i used minikube v1.10.1 ,k8s v1.18.2, using demo profile. how to tackle this. any help would be appreciated.
Hi Shubham!
Find out “Events” section after executing command
kubectl describe pod -n istio-system
there should be some useful info on what was happened.
Sorry for incorrect command.
In the link I posted, the set of useful commands, as well as kubectl logs usage. Next parameter to this command, the name of falling pod should be passed.
Like:
kubectl get logs istio-telemetry-767bf8bf6c-w4d4v --previous
Dont be sorry
i ran the this command but i forget to write here (don’t know how)
kubectl logs istio-telemetry-767bf8bf6c-rd4nk -n istio-system and also with --previous
Fine. Anyway, we need to get all possible info from this pod. Could you share complete output for kubectl describe pod istio-telemetry-xxx-xxx -n istio-system, not just Events section, please.
if I understand correct, the error message telling us: setting cgroup config for procHooks process caused \\\"failed to write \\\\\\\"480000\\\\\\\"
it seems here is the error
No i don’t usre any custom configs. i just follow the docs. install istio using demo profile (istioctl manifest apply --set profile=demo). it is first time i see this error. i installed istio(same version) before but never get this error.
so there is some resource problem?
Not sure if this is still a problem or not but FWIW I also hit the exact same error when my minikube had been started using the Docker driver. After removing the --driver=docker option from the minikube start command and allowing the default hyperkit driver to be used (I’m on macOS) the problem went away.