Heya, I am Favour Lawrence I’m trying to deploy th...
# python
i
Heya, I am Favour Lawrence I’m trying to deploy the AWS Load Balancer Controller via Helm in Pulumi using EKS. I’m passing the cluster name like this:
Copy code
python
alb_controller_helm = cluster.name.apply(lambda name: Release(..., values={"clusterName": name, ...}))
But I keep getting this error:
Copy code
Chart cannot be installed without a valid clusterName!
Hardcoding the name seems to work, but
.apply()
doesn’t seem to resolve it in time. Is this a known issue with Helm + Output values? What's the right way to pass
cluster.name
to a Helm chart in Pulumi? Appreciate any help! 🙏
a
elb controller? No need that in eks. Are you talking about ingress controller?