In the Pulumi Helm Wordpress example, I read this ...
# kubernetes
l
In the Pulumi Helm Wordpress example, I read this note: The Tiller server is not required to be installed. Pulumi will expand the Helm Chart and submit the expanded YAML to the cluster. Is this always the case? What if you have Helm charts which depend on this server expansion?
g
Yes, that’s the way Helm support is implemented in Pulumi for both v2 and v3. It’s semantically equivalent to
helm template
+
kubectl apply
Considering helm v3 doesn’t include Tiller at all, I’d expect the majority of Charts to work without it. Do you have a specific example in mind?
l
No, but out of experience I’m usually the person who would bump into such a case. 🙂
😄 1