Is helm 3 fully supported? I’m experimenting with ...
# general
r
Is helm 3 fully supported? I’m experimenting with gloo and so I have a pulumi file like this:
Copy code
import * as k8s from '@pulumi/kubernetes'

new k8s.helm.v2.Chart('gloo', {
  chart: 'gloo/gloo',
})
Pulumi fails with:
Error: Command failed: helm fetch gloo/gloo --untar --destination /tmp/tmp-12397xMcptBYcaXX7
In gloo docs, it mentions this bug in version 2: https://docs.solo.io/gloo/latest/installation/gateway/kubernetes/#installing-on-kubernetes-with-helm However, I have helm v3 installed in my path: $ helm version version.BuildInfo{Version:“v3.0.2”, GitCommit:“19e47ee3283ae98139d98460de796c1be1e3975f”, GitTreeState:“clean”, GoVersion:“go1.13.5"} Looking through pulumi-kubernetes I was able to find: https://github.com/pulumi/pulumi-kubernetes/pull/882 (Merged)