would really appreciate some help with that. every...
# kubernetes
q
would really appreciate some help with that. everything else with pulumi works completely fine. it's just helm charts not working at all and am having to install them manually right now
w
I have never seen anything like this - I would expect the updater to either error or always render all the resources in the chart. That it is silently not doing anything for multiple charts is very odd. The diagnostic log outputs might help debugging further: https://www.pulumi.com/docs/troubleshooting/#verbose-logging
q
i will try that
@white-balloon-205 do you want to see the log? created a completely new cluster and this is the pulumi program:
Copy code
import * as k8s from '@pulumi/kubernetes';

const nginx = new k8s.helm.v3.Chart('my-nginx', {
  chart: 'nginx-ingress',
  fetchOpts: { repo: '<https://kubernetes-charts.storage.googleapis.com>' },
});
btw, i have both
helm
and
helm3
binaries installed via snap, but really they are both version 3. i am using the v3 namespace in the program, as you can see.
w
There does appear to be some bug here - the log implies the helm template has no content. But that shouldn’t be the case. It’s possible some error is happening but not being reported correctly. Cc @gorgeous-egg-16927
Note- the v2 vs v3 thing is unrelated. Currently these use the same implementation.
q
thank you for taking a look