This message was deleted.
# kubernetes
s
This message was deleted.
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]