+1 vote
103 views
in Cloud by

I am getting the error on the calico-node status, I tried to run the below, and I used the below link to install calico
 

kubectl apply -f https://docs.projectcalico.org/v3.9/manifests/calico.yaml

crashloopbackoff kubernetes

2 Answers

0 votes
by
edited by
 
Best answer

You were using

kubectl apply -f https://docs.projectcalico.org/v3.9/manifests/calico.yaml

The below URL works for me to resolve pod crashloopbackoff,

 kubectl apply -f https://docs.projectcalico.org/manifests/calico.yaml
0 votes
by
"Crashloopbackoff" is a common error state in Kubernetes when a container continuously crashes and is restarted by the kubelet, the primary node agent in Kubernetes. This can happen for a variety of reasons, such as the container being unable to start due to a configuration error or an issue with the application code. If a container enters a crashloopbackoff state, it will be restarted a certain number of times before Kubernetes gives up and stops trying to restart it. This can be resolved by identifying and fixing the cause of the container crashing.
...