https://pulumi.com logo
#golang
Title
s

salmon-account-74572

09/21/2020, 7:44 PM
I apologize if I have the wrong terminology here, but is there an example of creating a new Kubernetes provider (or modifying an existing Kubernetes provider) so as to set the
RenderYamlToDirectory
property?
b

busy-umbrella-36067

09/22/2020, 1:29 AM
Copy code
const provider = new kubernetes.Provider(name,
  {
    kubeconfig: cluster.kubeConfigs[0].rawConfig,
    suppressDeprecationWarnings: true,
    renderYamlToDirectory: './test'
  },
  { parent: cluster }
);
s

salmon-account-74572

09/22/2020, 3:18 AM
Thank you!
3 Views