[Bug] Helm install strimzi/strimzi-kafka-operator pod fails with error ErrImagePull in minikube
See original GitHub issueDescribe the bug I tried to install helm chart strimzi/strimzi-kafka-operator in minikube but pod failed with error ErrImagePull (reference document https://strimzi.io/blog/2018/11/01/using-helm/)
To Reproduce
//Install minikube
minikube --memory 20g --cpus 3 start
//add repo
helm repo add strimzi https://strimzi.io/charts/
//install chart
helm install strimzi-kafka strimzi/strimzi-kafka-operator
Output of above command NAME: strimzi-kafka-operator-1590524093 LAST DEPLOYED: Tue May 26 15:14:55 2020 NAMESPACE: default STATUS: deployed REVISION: 1 TEST SUITE: None NOTES: Thank you for installing strimzi-kafka-operator-0.18.0
Now, if I do
kubectl get pods
NAME READY STATUS RESTARTS AGE
strimzi-cluster-operator-54565f8c56-5rjp4 0/1 ErrImagePull 0 19s
Expected behavior Pod strimzi-cluster-operator should be in running status. Why the Imagepull failed.?
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
ImagePullsBackOff and ErrImagePull Errors - Komodor
ImagePullBackOff / ErrImagePull error means that a pod cannot pull an image from a container registry. Learn to identify and resolve this error....
Read more >Why am I getting an ErrImagePull error in this Kubernetes ...
I'm trying to create a local Kubernetes deployment using Minikube, Docker Registry, and a demo node project.
Read more >Kubernetes ImagePullBackOff: Troubleshooting With Examples
Here are some of the possible causes behind your pod getting stuck in the ImagePullBackOff state: Image doesn't exist. Image tag or name...
Read more >Kubernetes ErrImagePull and ImagePullBackOff in detail
Learn how to detect and debug ErrImagePull errors in Kubernetes and understand ... Pod creation will fail with ErrImageNeverPull error.
Read more >Is Your Kubernetes Pod Failing to Start? Here's a Command to ...
Let's look at how “kubectl describe” can help solve other types of errors in Kubernetes. Troubleshooting the “ErrImagePull” Status. As the name ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok. TBH I’m afraid there is not much more I can do … I can pull the image fine from DockerHub, so that should be fine. Can you pull any other images from DockerHub? Do you have any proxies or admission controller which can be checking this and not allowing you to pull it?
Great, glad it works.