Pulumi-kubernetes: Support deployment of Kubernetes YAML files

Created on 2 Aug 2018  路  1Comment  路  Source: pulumi/pulumi-kubernetes

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.

areinner-dev-loop

Most helpful comment

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/)

>All comments

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/)

Was this page helpful?
0 / 5 - 0 ratings