https://pulumi.com logo
Title
e

eager-lifeguard-95876

01/27/2023, 9:22 AM
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

fierce-pillow-7950

01/27/2023, 12:50 PM
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:
from pulumi import FileAsset

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