jx3-gitops-repositories / jx3-terraform-eks

Jenkins X 3.x Infrastructure Git Template for Terraform and EKS for managing cloud resources
Apache License 2.0
9 stars 40 forks source link

JX-GitOperator fails to install - failed to download - helm #8

Open clklachu opened 3 years ago

clklachu commented 3 years ago

Hello,

When I run a fresh install of the jxv3 from this repository, my EKS clusters are installed and it fails to install the jx-git-operator with the below error from terraform

module.eks-jx.module.cluster.null_resource.kubeconfig: Creation complete after 2s [id=6616726043172466068] module.eks-jx.module.cluster.helm_release.jx-git-operator[0]: Creating...

Error: failed to download "https://jenkinsxio.storage.googleapis.com/charts/jx-git-operator-0.0.143.tgz" (hint: running helm repo update may help)

Could you please help me to overcome this? I'm just following the readme from this Git repo.

ahmetcetin commented 3 years ago

I had the same problem. With the suggestion of Chris Mellard in slack channel, I've added the following to main.tf and it worked for me:

provider "helm" {
  version = "1.3.2"
}
serhiykrupka commented 3 years ago

same issue: https://github.com/jenkins-x/terraform-aws-eks-jx/issues/233