Pull docker hub images in Helm chart values.yaml Pull docker hub images in Helm chart values.yaml kubernetes kubernetes

Pull docker hub images in Helm chart values.yaml


Run kubectl describe pod <yourpod> soon after the error occurs and there should be an event near the bottom of the output that tells you exactly what the image pull problem is.

Off the top of my head it could be one of these options:

  • It's a private repo and you haven't provided the service account for the pod/deployment with the proper imagePullSecret
  • Your backend isn't docker or does not assume that non prefixed images are on hub.docker.com. Try this instead: registry-1.docker.io/arycloud/myhello

If you can find that error it should be pretty straight forward.