Siyu Wang
Siyu Wang
/retitle ✨ Support api-approved annotation for CRD with k8s group
/cc @alvaroaleman @joelanford
@joelanford @alvaroaleman I have made it more generic for additional annotations or labels. PTAL :)
@jake-volvo sure, please feel free to create a PR for this.
/remove-lifecycle stale
Unfortunately, the [OpenAPI data-types](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/2.0.md#data-types) which is used by CRD to define its additionalPrinterColumns does not support array type.
@damnever That's different. The columns of those built-in resources are defined in kubectl logic, which can easily print any data they want. But CRD, on the other hand, can only...
/remove-lifecycle stale
@mbrancato Have you registered your custom types into scheme? ```golang import ( "k8s.io/apimachinery/pkg/runtime" clientgoscheme "k8s.io/client-go/kubernetes/scheme" yourprojapi "github.com///api/" ) scheme := runtime.NewScheme() // register all built-in types _ = clientgoscheme.AddToScheme(scheme) //...
So you mean `Get Widget` works, but `List WidgetList` fails because of `no kind is registered for the type v1.WidgetList`? That's weird. Maybe you should check the `init()` function in...