This message was deleted.
# general
s
This message was deleted.
g
We don’t currently expose a way to keep those files around after failure. I can take a look if you want to post the code snippet you’re using for the Chart + values
b
Thanks!
Copy code
const helm = new kubernetes.helm.v2.Chart("sumobundle", {
    fetchOpts: {
        repo: "<https://sumologic.github.io/sumologic-kubernetes-collection>"
    },
    chart: "sumologic",
    namespace: "sumologic",
    values:
        {
            "sumologic.endpoint": "<https://api.us2.sumologic.com/api/v1/>",
            "sumologic.accessId": "secret",
            "sumologic.accessKey": "alsosecret",
            "prometheus-operator.prometheus.prometheusSpec.externalLabels.cluster": "mycluster",
            "sumologic.clusterName": "mycluster"        }

})
g
Ah, the problem is with the keys in your values dict. Instead of
sumologic.endpoint
, you would need
Copy code
sumologic: {
  endpoint: "<URL>"
}
Same for the other values
It might make sense to support the format you used as well. You’re welcome to open an issue on the pulumi-kubernetes repo if that would be helpful
b
Thanks for the tip! I'll do so.
👍 1