Created
August 15, 2021 01:10
-
-
Save sierrezinal/9397134370c89f7b1571e22db3b04deb to your computer and use it in GitHub Desktop.
Unable to install ingress-nginx into kind cluster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ kubectl apply --filename | |
https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/deploy/static/provider/kind/deploy.yaml | |
$ kubectl get pods -n ingress-nginx -l app.kubernetes.io/name=ingress-nginx --watch | |
NAME READY STATUS RESTARTS AGE | |
ingress-nginx-admission-create-z5bkg 0/1 ContainerCreating 0 12s | |
ingress-nginx-admission-patch-cwxsr 0/1 ContainerCreating 0 12s | |
ingress-nginx-controller-78f889f8b9-sfpw9 0/1 ContainerCreating 0 12s | |
ingress-nginx-admission-create-z5bkg 0/1 ErrImagePull 0 21s | |
ingress-nginx-admission-patch-cwxsr 0/1 ErrImagePull 0 21s | |
ingress-nginx-admission-create-z5bkg 0/1 ImagePullBackOff 0 33s | |
ingress-nginx-admission-patch-cwxsr 0/1 ImagePullBackOff 0 35s | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you
kubectl describe
one of those Pods with errors and paste the output. We should be able to see the cause of the issue through the events.