Hey, is that possible to pass in a values.yaml fil...
# general
d
Hey, is that possible to pass in a values.yaml file (instead of put the values in code) when deploying helm charts?
c
@damp-pillow-67781 it’s not!
this is probably a good idea though.
I’ll file a bug.
d
Yeah cuz I have to edit lots of values which is not a good idea to put it in code
Thanks
c
Hmm, not sure I understand that last bit?
d
So right now I have to specify
values: {}
to pass in values to deploy a helm chart, but I have a bunch of values to put in, so that’s a very long block, I’m wondering if it’s possible to separate values into a file.
c
@damp-pillow-67781 right, makes sense. In the short term, how about just putting those values in a file and then calling
JSON.parse(fs.readSync(...).toString())
d
Oh yeah that’s another solution, thanks!
w
(Or use a YAML parser from NPM as the case may be)
👍 1