This message was deleted.
# kubernetes
s
This message was deleted.
a
The EKS is deployed on
us-east-1
and the image that is pulled is on
us-west-2
ECR. Not sure if that is an issue though 🤷‍♂️
For those who are interested I was able to fix this by specifying the image in
us-east-1
region. Not sure why it was not working for the other region though.
Copy code
vpcCniOptions: {
        image: "<http://602401143452.dkr.ecr.us-east-1.amazonaws.com/amazon-k8s-cni:v1.12.5|602401143452.dkr.ecr.us-east-1.amazonaws.com/amazon-k8s-cni:v1.12.5>",
        initImage: "<http://602401143452.dkr.ecr.us-east-1.amazonaws.com/amazon-k8s-cni-init:v1.12.5|602401143452.dkr.ecr.us-east-1.amazonaws.com/amazon-k8s-cni-init:v1.12.5>",
    }
s
makes sense since internal ECR is a regional service.