aws-ia / terraform-aws-eks-blueprints-addons

Terraform module which provisions addons on Amazon EKS clusters
https://aws-ia.github.io/terraform-aws-eks-blueprints-addons/main/
Apache License 2.0
269 stars 127 forks source link

Cert Manager Currently Using deprecated option #420

Open ansasi opened 1 month ago

ansasi commented 1 month ago

Cert_Manager is currently using installCRDs by default, which is a deprecated option of the helm chart of cert_manager. This should be updated to use crds.enabled = true + crds.keep = true.

These are the lines of coded that should be reviewed: https://github.com/aws-ia/terraform-aws-eks-blueprints-addons/blob/2848b19fc0fca370456c2ef45313ed4b6395e5b2/main.tf#L1909-L1921

ansasi commented 2 weeks ago

Hello,

I attach the official documentation on the Helm Chart of cert-manager.

As showed installCRDs is deprecated and not used anymore. In exchange now crds.enabled and crds.keep are set to true.

image

Have a nice day.