hi, I want to deploy a chart from a repo, not loca...
# kubernetes
e
hi, I want to deploy a chart from a repo, not local, but I want to use a values.yaml file to replace some values. How do I do that?
this is pretty common. And I dont want to pass the entire values.yaml file as an object in the
values
property.
q
The values you provide when using Pulumi's Helm class is merged with the default values specified in the charts repository
Copy code
const helmRelease = new k8s.helm.v3.Chart(
    "argocd-helm-release",
    {
      namespace: namespace.metadata.name,
      repo: "argo",
      chart: "argo-cd",
      version: "2.2.7",
      values: {
        fullnameOverride: "argocd",
      }
    });
e
that is not what I asked
anyway, I am using
js-yaml
, to read my values.yaml file and pass it to the
values
property as an object.