https://pulumi.com logo
Title
q

quaint-electrician-41503

10/29/2020, 5:42 PM
I currently deploy a chart like
Chart("some-name,config=LocalChartOpts(path=path/to/helm-chart,ns=...,values=custom_values))
b

billowy-army-68599

10/29/2020, 7:39 PM
it'll read the chart version this way
q

quaint-electrician-41503

10/30/2020, 1:02 AM
If I'm specifying a path to the chart, I'd assume it's getting the version by definiton. What I was wondering is there an equivilant to
helm upgrade
or does it intuit the change by the change of values. I guess I need to look at the helm source and look further into the pulumi source to understand
b

billowy-army-68599

10/30/2020, 1:25 AM
we don't use any of helm's server side logic, pulumi essentially runs
helm template
with the chart and then renders the output and looks through the yaml list and applies each of the resources. If you're using a local chart, and you update the local chart source,
pulumi up
will just run
helm template
again.