Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ignore
ValidationSchema
that results in registering all models
`ValidationSchema` is annotated with `@JsonDeserialize` which leads in its entire type hierarchy being registered for reflective access along with the corresponding methods. This essentially ends up registering all models as in kubernetes-client 6.9.0 ValidationSchema was augmented to implement `Editable<ValidationSchemaBuilder>`, which increases the reachable types in comparison to previous versions. Ignoring registrations for `ValidationSchema` aligns with what we already do for `KubeSchema`. Fixes quarkusio#38683
- Loading branch information