incalculable-energy-23607
07/22/2025, 9:07 PMpython
alb_controller_helm = cluster.name.apply(lambda name: Release(..., values={"clusterName": name, ...}))
But I keep getting this error:
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! 🙏adamant-lawyer-19698
07/22/2025, 10:58 PM