what is the best way to check/wait for some k8s resource readiness that's created out-of-band for Pulumi? e.g. a CRD that's installed by some operator?
• installing CRDs with a ConfigGroup is not an option if the CRD source isn't available
• installing CRDs with Helm is also not an option since that removes the ability to upgrade CRDs.
• write some async/retry logic around
,get()
?