I’m having trouble using a Helm chart with Pulumi....
# general
s
I’m having trouble using a Helm chart with Pulumi. The docs for the Prometheus Operator project say to do this:
Copy code
helm repo add coreos <https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/>
helm install coreos/prometheus-operator --name prometheus-operator --namespace monitoring
So I’m trying this in Pulumi:
Copy code
const chart = new k8s.helm.v2.Chart('prometheus-operator', {
    repo: '<https://s3-eu-west-1.amazonaws.com/coreos-charts/stable>',
    version: '0.0.29',
    chart: 'prometheus-operator',
})
But Pulumi reports that Helm 404'd trying to find the chart.
c
@stale-holiday-22431 btw… the prometheus charts have a few bugs that we’ve tried to upstream fixes for: https://github.com/coreos/prometheus-operator/pull/1990
I fixed these for a different user, let me see if I can dig it upo
@stale-holiday-22431 here we go: