Do you need Helm installed to use Helmcharts via P...
# kubernetes
p
Do you need Helm installed to use Helmcharts via Pulumi?
l
As far as I can remember me using it once, yes, because Pulumi uses it via
helm template
to “instantiate” the chart to YAML and convert that to Pulumi resources.
p
found a thread from feb where @billowy-army-68599 mentions it is no longer needed https://pulumi-community.slack.com/archives/C84L4E3N1/p1614122626153900
trying it out, we’ll see
l
I don’t use it anymore. Everything is written in Pulumi code for us.
☝️ 1
I convert via
helm template
, followed by https://www.pulumi.com/kube2pulumi/ to have a baseline of Pulumi code from which I refactor.
p
we use a lot of community helm charts which i do not want to maintain myself after conversion.
f
You are not required to have helm installed. The pulumi kubernetes provider uses the helm sdk/lib under the hood to template out the chart. https://github.com/pulumi/pulumi-kubernetes/blob/master/provider/pkg/provider/invoke_helm_template.go
🙌 1