Hi everyone. Is it possible to use a custom resour...
# typescript
g
Hi everyone. Is it possible to use a custom resource like Istio Gateway or any other custom kubernetes resources as YAML (or JSON-ified YAML)? I know it's a method available that can load from file, but then I end up with both a set of javascript/typescript files and a bunch of YAML files.
w
You can create instances of custom resources using https://pulumi.io/reference/pkg/nodejs/pulumi/kubernetes/apiextensions/#CustomResource. Is that what you are looking for?
g
Oh. Will try. Thanks.