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

Helm repo is not exisiting #5

Open
macdrorepo opened this issue Jan 12, 2021 · 2 comments
Open

Helm repo is not exisiting #5

macdrorepo opened this issue Jan 12, 2021 · 2 comments

Comments

@macdrorepo
Copy link

Thx for the article. Could you update it with helm repo? I suppouse it should be now:
helm repo add eks https://aws.github.io/eks-charts and helm install eks/aws-load-balancer-controller. According to readme from https://github.com/aws/eks-charts/tree/master/stable/aws-load-balancer-controller there is one more step needed kubectl apply -k "github.com/aws/eks-charts/stable/aws-load-balancer-controller//crds?ref=master" but I do not know how to include that in terraform

@evenramac
Copy link

Hi @macdrorepo, i know it's late, but if you're still facing this issue, here are my approach to resolve it.

Modify 06_terraform_envs_customised/cluster/main.tf file, like so :

diff --git a/06_terraform_envs_customised/cluster/main.tf b/06_terraform_envs_customised/cluster/main.tf
index fce1a22..b6f6c4c 100644
--- a/06_terraform_envs_customised/cluster/main.tf
+++ b/06_terraform_envs_customised/cluster/main.tf
@@ -98,9 +98,9 @@ provider "helm" {
 
 resource "helm_release" "ingress" {
   name       = "ingress"
-  chart      = "aws-alb-ingress-controller"
-  repository = "http://storage.googleapis.com/kubernetes-charts-incubator"
-  version    = "1.0.2"
+  repository = "https://aws.github.io/eks-charts"
+  chart      = "aws-load-balancer-controller"
+  version    = "1.1.5"
 
   set {
     name  = "autoDiscoverAwsRegion"

You're right about the helm repo URL changes and AFAIK, you don't have to run the kubectl apply -k "github.com/aws/eks-charts/stable/aws-load-balancer-controller//crds?ref=master" additional command.

@woodenpencil
Copy link

  • version = "1.1.5"

Version 1.1.6 is available.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants