Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QUESTION] adot support for EKS 1.30? #274

Open
1 task done
klang opened this issue Jun 12, 2024 · 4 comments
Open
1 task done

[QUESTION] adot support for EKS 1.30? #274

klang opened this issue Jun 12, 2024 · 4 comments
Labels
question Further information is requested

Comments

@klang
Copy link

klang commented Jun 12, 2024

Please describe your question here

Are there any plans to release adot for EKS 1.30?

aws eks describe-addon-versions --kubernetes-version 1.30 --addon-name adot
{
    "addons": []
}

Provide link to the example related to the question

When running the example terraform-aws-observability-accelerator/examples/managed-grafana-workspace pointing at an EKS Cluster running version 1.30, the following error is produced:


╷
│ Error: reading EKS Add-On version info (adot, 1.30): empty result
│
│   with module.eks_monitoring.module.operator[0].data.aws_eks_addon_version.this,
│   on ../../modules/eks-monitoring/add-ons/adot-operator/main.tf line 22, in data "aws_eks_addon_version" "this":
│   22: data "aws_eks_addon_version" "this" {
│
╵

The reason for this is because adot doesn't seem to have been released for EKS 1.30 yet.

Additional context

Luckily, a change from 1.29 to 1.30 in the following will produce an error, so .. the missing addon for 1.30 is only a problem if one suddenly decides to use the addon after upgrading to 1.30.

module "eks" {
  source  = "terraform-aws-modules/eks/aws"
  version = "20.13.1"

  cluster_name    = local.cluster_name
  cluster_version = "1.29"

  cluster_endpoint_public_access           = true
  enable_cluster_creator_admin_permissions = true

  cluster_addons = {
    adot = {}

...

the error:

│ Error: reading EKS Add-On version info (adot, 1.30): empty result
│
│   with module.eks.data.aws_eks_addon_version.this["adot"],
│   on .terraform/modules/eks/main.tf line 490, in data "aws_eks_addon_version" "this":
│  490: data "aws_eks_addon_version" "this" {
│

Furthermore, although the addon is availale via the console, it's not possible to use it by mistake.

Skærmbillede 2024-06-12 kl  15 31 26

More

@klang klang added the question Further information is requested label Jun 12, 2024
@klang klang changed the title [QUESTION] <title> [QUESTION] adot support for EKS 1.30? Jun 12, 2024
Copy link

This issue has been automatically marked as stale because it has been open 60 days
with no activity. Remove stale label or comment or this issue will be closed in 10 days

@github-actions github-actions bot added the stale label Aug 17, 2024
@sidick
Copy link

sidick commented Aug 17, 2024

This is still the case

@github-actions github-actions bot removed the stale label Aug 18, 2024
@klang
Copy link
Author

klang commented Aug 21, 2024

aws eks describe-addon-versions --kubernetes-version 1.31 --addon-name adot
{
    "addons": []
}

.. and it's also the case for 1.31, now.

Copy link

This issue has been automatically marked as stale because it has been open 60 days
with no activity. Remove stale label or comment or this issue will be closed in 10 days

@github-actions github-actions bot added stale and removed stale labels Oct 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants