Does `crd2pulumi` still output installable CRD def...
# general
t
Does
crd2pulumi
still output installable CRD definitions? I noticed this in the docs, which is what I'm after:
Copy code
new certificates.certmanager.CertificateDefinition("certificate");
but I'm not seeing anything like that after trying crd2pulumi on the certmanager yaml myself. I do get strongly typed access to the CRDs after they're created, but I have to build out the resource definitions myself to install them in the cluster..
b
I’ve always installed the CRD myself and used the output of crd2pulumi to be able to use that CRD
t
thanks man, yeah that's what I'm doing as well, but got curious about the docs implementation