I'm quite surprised that the k8s Java provider doe...
# java
f
I'm quite surprised that the k8s Java provider does not support CustomResources (https://github.com/pulumi/pulumi-kubernetes/issues/2274)
Perhaps it is obvious to someone familiar with the Java generation why this omitted.
e
CustomResource is what's called an "overlay" resource. It has a shape that's not expressible in the Pulumi schema and so can't be code generated for each language, instead it has to be manually written. We're trying to get rid of overlay resources, and I'd guess the plan for this was to replace CustomResource with a proper resource so it then works for all languages rather than writing another overlay for Java. Appears that hasn't been done yet.
f
Thanks for the info. I don't quite follow the details, but is there somewhere I can track the replacement to Overlay resources in general?
e
I don't think it's being tracked explicitly anywhere. I'll see if there's any thing specific for k8s CustomResources.