Steven Hawkins

Results 508 comments of Steven Hawkins

These errors are present in the 5.12.1 log as well, so I will consider them separate from the api and extension work. I guess the karaf tests need updated to...

Based upon https://github.com/fabric8io/kubernetes-client/discussions/3941#discussioncomment-2339277 a quick implementation would be something like KubernetesMockServer.defineType(ResourceDefinitionContext) - and it would automatically setup the needed expectations. Based upon https://github.com/fabric8io/kubernetes-client/discussions/3941#discussioncomment-2339347 you could also consider a more crud...

2. Limited support exists. See the handling in KubernetesAttributesExtractor. Currently the crd information is only used to determine if the resource has a status sub-resource and to determine the plural...

Specifically deprecate ``` UNMATCHED_FIELD_TYPE_MODULE jsonMapper() yamlMapper() unmarshal(InputStream is) unmarshal(InputStream is, Map parameters) unmarshal(String str) ``` If we want the replacement to be available without completely building a client, then we'll...

At a minimum we would introduce here an api for accessing what are now static concerns of serialization: ``` public interface KubernetesSerialization { T unmarshal(InputStream is); T unmarshal(InputStream is, Map...

After talking with @manusa the usage of registerCustomKind is more limited for the client than I thought. We probably want to avoid using that internally or promoting that for usage...

The next steps here is to remove all internal usage of KubernetesDeserializer.registerCustomKind - even if we have a non-static KubernetesDeserializer, that kind of side implicit side-effect is undesirable. The expectation...

> Am I doing it wrong? No, this is simply missing. The tekton-model-triggers generates only the v1alpha1 model. I'm not sure why a corresponding tekton-model-triggers-v1beta1 was not added when the...

Julien Viet provided an outline of a client support at https://github.com/shawkins/httpclient/pull/1 There is still a fair amount of work to be done.

@metacosm @vietj @manusa I've picked this up again at https://github.com/fabric8io/kubernetes-client/tree/vertx-client There are plenty of unsupported things and todos left. I'll take another couple of passes over it to see if...