Package io.quarkus.kubernetes.client
Interface KubernetesClientObjectMapperCustomizer
-
public interface KubernetesClientObjectMapperCustomizerAllow the provision of beans that customize the defaultObjectMapperused by the KubernetesClient to perform kubernetes-specific serialization and deserialization operations.The resulting
ObjectMapperis used to produce the defaultKubernetesSerializationbean, which is in turn used to produce the defaultKubernetesClientbean.The following code snippet shows how to provide a KubernetesClientObjectMapperCustomizer:
{@code @Singleton public static class Customizer implements KubernetesClientObjectMapperCustomizer {
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcustomize(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
-