Im using Amazon ECR images for security purpose.When I deployed my helm charts in local it unable to pull the ECR images.(401 unauthorized).
You'll need to configure access to your private registry, the nodes have their own container runtime and don't inherent the host access.
Alternatively: You can pull each image to your host and side load them with kind load docker-image
You'll need to configure access to your private registry, the nodes have their own container runtime and don't inherent the host access.
Alternatively: You can pull each image to your host and side load them with
kind load docker-image
Fixed this issue using "imagePullSecrets".
Great! :-)
Most helpful comment
You'll need to configure access to your private registry, the nodes have their own container runtime and don't inherent the host access.
Alternatively: You can pull each image to your host and side load them with
kind load docker-imagehttps://kind.sigs.k8s.io/docs/user/private-registries/