You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am receiving these errors when I install EMR on EKS with Karpenter templates. I have tried in two different regions and they seem to be reproducible
Here are the errors,
│ Error: could not download chart: failed to download "oci://public.ecr.aws/karpenter/karpenter" at version "v0.18.1"
│
│ with module.eks_blueprints_kubernetes_addons.module.karpenter[0].module.helm_addon.helm_release.addon[0],
│ on .terraform/modules/eks_blueprints_kubernetes_addons/modules/kubernetes-addons/helm-addon/main.tf line 1, in resource "helm_release" "addon":
│ 1: resource "helm_release" "addon" {
│
╵
╷
│ Error: could not download chart: failed to download "oci://public.ecr.aws/kubecost/cost-analyzer" at version "1.97.0"
│
│ with module.eks_blueprints_kubernetes_addons.module.kubecost[0].module.helm_addon.helm_release.addon[0],
│ on .terraform/modules/eks_blueprints_kubernetes_addons/modules/kubernetes-addons/helm-addon/main.tf line 1, in resource "helm_release" "addon":
│ 1: resource "helm_release" "addon" {
│
╵
╷
│ Error: cannot re-use a name that is still in use
│
│ with module.eks_blueprints_kubernetes_addons.module.coredns_autoscaler[0].module.helm_addon.helm_release.addon[0],
│ on .terraform/modules/eks_blueprints_kubernetes_addons/modules/kubernetes-addons/helm-addon/main.tf line 1, in resource "helm_release" "addon":
│ 1: resource "helm_release" "addon" {
│
Follow the steps for deploying the solution
cd data-on-eks/analytics/terraform/emr-eks-karpenter
terraform init
export AWS_REGION="us-west-2"
terraform plan
terraform apply
I have tried in us-east-2 region as well
Expected behavior
Expect to see all resources created without issues. I think Kubecost is not ready yet and can send PR to disable until its ready. Karpenter and other resources should install without hiccups
The text was updated successfully, but these errors were encountered:
@dalbhanj you need to do login before pulling image from ECR. try the command below before running terraform apply
aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws
Description
I am receiving these errors when I install EMR on EKS with Karpenter templates. I have tried in two different regions and they seem to be reproducible
Here are the errors,
Versions
Steps to reproduce the behavior:
Follow the steps for deploying the solution
cd data-on-eks/analytics/terraform/emr-eks-karpenter
terraform init
export AWS_REGION="us-west-2"
terraform plan
terraform apply
I have tried in us-east-2 region as well
Expected behavior
Expect to see all resources created without issues. I think Kubecost is not ready yet and can send PR to disable until its ready. Karpenter and other resources should install without hiccups
The text was updated successfully, but these errors were encountered: