Does anyone here know how to write the pulumi for ...
# kubernetes
a
Does anyone here know how to write the pulumi for a `k8s.helm.v3.Chart`to install multiple nginx-ingress-controllers? Basically, I want to run the chart twice, one for an internal load balancer and one for an external load balancer, so I provide unique
ingress-class
values for the separate charts. The problem with the chart is that it installs the clusterrole and clusterrolebinding and I can't figure out how to get the second run to not try to install those.
b
the issue is detailed here: https://github.com/pulumi/pulumi-kubernetes/issues/1195 Essentially at the moment you'll need to add a transformation for the second invocation to remove the crds from the chart
a
Thanks @billowy-army-68599 I'll look now