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
272 stars 127 forks source link

cert-manager helm chart #436

Closed oscarboher closed 1 week ago

oscarboher commented 1 week ago

Please describe your question here

Why is the cert-manager helm chart repository not the official one?

The default chart repository for cert-manager is charts.jetstack.io, instead of the official one. Is there any reason?

# https://github.com/cert-manager/cert-manager/blob/master/deploy/charts/cert-manager/Chart.template.yaml
  name             = try(var.cert_manager.name, "cert-manager")
  description      = try(var.cert_manager.description, "A Helm chart to deploy cert-manager")
  namespace        = local.cert_manager_namespace
  create_namespace = try(var.cert_manager.create_namespace, true)
  chart            = try(var.cert_manager.chart, "cert-manager")
  chart_version    = try(var.cert_manager.chart_version, "v1.14.3")
  repository       = try(var.cert_manager.repository, "https://charts.jetstack.io")
  values           = try(var.cert_manager.values, [])

Provide a link to the example/module related to the question

The official repo for cert-manager: https://github.com/cert-manager/cert-manager the helm chart in the repo is located in: https://github.com/cert-manager/cert-manager/tree/master/deploy/charts/cert-manager the artifacthub link: https://artifacthub.io/packages/helm/cert-manager/cert-manager

Additional context

oscarboher commented 1 week ago

Found that it was actually the repo, sorry!