Hello, I suspect `value_yaml_files` isn’t working....
# kubernetes
e
Hello, I suspect
value_yaml_files
isn’t working. I tried deploying a helm release and passing that argument. I can see the resource being updated but when I check the resources they had the chart’s defaults… any idea what I could be missing?
f
i ran into this recently and, iirc, it’s because i wasn’t passing the file in a list for example, if i have my values file path defined in my stack config, i would do the following in python:
Copy code
from pulumi import FileAsset

values_file = pulumi.FileAsset(path=config.require("values-file"))
and in the release args:
Copy code
value_yaml_files=[values_file]