DEV Community

Lord Jake
Lord Jake

Posted on

Failed pre-install: timed out waiting for the condition. Helm install error

Today I was trying to install ingress controller using helm3 and got an error like below.

Error: INSTALLATION FAILED: failed pre-install: timed out waiting for the condition.

I felt the above error was not giving a proper indication of what went wrong, but this could be identified by collecting the event logs and see what is actually failing under the hood.

kubectl -n <your-namespace> get events --sort-by='{.lastTimestamp}'

Image description

Which showed me there was missing images in my azure container registry which was causing ErrImagePull.

Top comments (0)