I’m seeing `no resource plugin 'af'` and not sure ...
# general
i
I’m seeing
no resource plugin 'af'
and not sure how I’m introducing it. I’ve created a
CustomResource
, is it pulling it off the beginning of the name for it?
c
I think you can make it not do that if you set
pulumi
as the provider
so in other words:
Copy code
"kubernetes:<http://admissionregistration.k8s.io/v1alpha1:InitializerConfiguration|admissionregistration.k8s.io/v1alpha1:InitializerConfiguration>"
would use the
kubernetes
plugin
i
yes, this is a
kubernetes:
resource, I just didn’t name it that way initially thinking I didn’t want to violate their namespace with my code, but that makes sense
c
have you considered making it a
ComponentResource
?
components are a collection of other resources.
yaml.ConfigFile
is a
ComponentResource
, e.g.
i
It’s a certmanager Issuer
my
CertManager
is a
ComponentResource
which consists of chart, secret, and issuer
c
ah got it
i
looks right now
c
makes sense, sorry did not see that