Is there a generic `k8s` resource I can use to cre...
# general
r
Is there a generic
k8s
resource I can use to create an object of a CRD without implementing a full
pulumi custom resource
? Looking into specifying some
cert-manager
`Issuer`s and `Certificate`s in code without just dropping everything in a yaml file and using
ConfigFile
for it.
g
Yep, you can use the apiextensions.CustomResource class for that.
r
Nice. Exactly what I was looking for! 👍
🎉 1