We added support for deploying Helm charts via Pulumi in https://github.com/pulumi/pulumi-kubernetes/issues/54, and should extend this to support the (simpler) case of deploying raw Kubernetes YAML files.
I found this issue before I found docs on how to use it. For anyone else, you want
import * as k8s as "@pulumi/kubernetes";
new k8s.yaml.ConfigFile("app.yaml");
(via https://pulumi.io/quickstart/kubernetes/)
Most helpful comment
I found this issue before I found docs on how to use it. For anyone else, you want
(via https://pulumi.io/quickstart/kubernetes/)