Steven Hawkins
Steven Hawkins
> I need to check, but I think this one would break the feature where we allow deserializing fields with unmatched types to the additionalProperties map. Other than changing the...
@sunix I mentioned something about backporting on the call - I was mixed up. #4263 is the one that should be considered for backport, not this one.
This is a known issue with retrieving templates in their object form - it could be addressed by #4034 The workaround for now is that you either need to use...
To replace the parameter values: ``` client.templates().inNamespace(NamespaceName).withName(templateName).process(map) ``` To read the template as a generic ``` client.genericKubernetesResources("template.openshift.io/v1", "Template").inNamespace(NamespaceName).withName(templateName).get() ``` or ``` client.genericKubernetesResources(ResourceDefinitionContext.fromResourceType(Template.class)).withName(templateName).get() ```
cc @iocanel @metacosm
Removing from the 6.0.0 milestone. I won't have time to pick this up.
@anurag-rajawat they should not be removed yet. To ease the migration to 6.0 they will still initially be present but deprecated. In a subsequent release they will be removed.
All we need to do for this is temporarily remove ratchetFrom in the root pom, then run "mvn spotless:apply -Pitests". Looks like about 619 files still need formatted. Once master...
> Maybe we can further discuss No problem. The primary driver is to make it easier to read pr diffs moving forward. Also given that we've had the formatting requirement...
The nuance here is that the your status must be defaulting to preserving, rather than omitting, nulls. So the diff utility considers: status: message: null replacing the old value with...