Kind: Amazon ECR images are accessible in KIND?

Created on 24 Sep 2019  路  3Comments  路  Source: kubernetes-sigs/kind


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).

kinsupport

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-image

https://kind.sigs.k8s.io/docs/user/private-registries/

All 3 comments

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

https://kind.sigs.k8s.io/docs/user/private-registries/

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

https://kind.sigs.k8s.io/docs/user/private-registries/

Fixed this issue using "imagePullSecrets".

Great! :-)

Was this page helpful?
0 / 5 - 0 ratings