Hi guys, how do I specify the path of the values f...
# general
f
Hi guys, how do I specify the path of the values file for an helm chart?
c
you don’t, you use
fs.readFileSync
or you put them in as JSON literal
f
Hi @creamy-potato-29402, I need to merge a values file named values-crd.yaml (instead of values.yaml) with some args. How can I do that?
c
there is no built-in way to do this. you have to write code to do it.
you read the file, change it how you like, and pass it to
values
in the argument to the
Chart
constructor
f
okies, thanks