Anyone know how to do the equivalent of `--set-fil...
# kubernetes
b
Anyone know how to do the equivalent of
--set-file
on a k8s.helm.v3.Chart? Regular
--set
is done through
ChartOpts.values
, but its unclear to me how to supply a file as value. Am trying to get an install of Linkerd via Helm going, by porting https://linkerd.io/2.10/tasks/install-helm/ to Pulumi code
Mmm, think I've figured it out:
--set-file
in helm just reads the contents of the specified file and inlines the content of the file as value So, in Pulumi, I just have to read the contents of the file in code and then use that content in ChartOps.values