I apologize if I have the wrong terminology here, ...
# golang
s
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
Copy code
const provider = new kubernetes.Provider(name,
  {
    kubeconfig: cluster.kubeConfigs[0].rawConfig,
    suppressDeprecationWarnings: true,
    renderYamlToDirectory: './test'
  },
  { parent: cluster }
);
s
Thank you!