@@ -338,7 +338,7 @@ default ExecutorServiceManager getExecutorServiceManager() {
338
338
* resources are created/updated and match was change to use
339
339
* <a href="https://kubernetes.io/docs/reference/using-api/server-side-apply/">Server-Side
340
340
* Apply</a> (SSA) by default.
341
- *
341
+ * <p>
342
342
* SSA based create/update can be still used with the legacy matching, just overriding the match
343
343
* method of Kubernetes Dependent Resource.
344
344
*
@@ -349,11 +349,16 @@ default boolean ssaBasedCreateUpdateMatchForDependentResources() {
349
349
}
350
350
351
351
/**
352
- * There are certain resources where the intention is not use SSA in Kubernetes. Typical are
353
- * ConfigMaps or Secrets. For these resources, if {@link KubernetesDependent#useSSA()} is not
354
- * explicitly overriden for a dependent resource instance SSA will not be used, event if in
355
- * general SSA is used for Dependent Resources, see
356
- * {@link #ssaBasedCreateUpdateMatchForDependentResources()}.
352
+ * Returns the set of default resources for which Server-Side Apply (SSA) will not be used, even
353
+ * if it is the default behavior for dependent resources as specified by
354
+ * {@link #ssaBasedCreateUpdateMatchForDependentResources()}. The exception to this is in the case
355
+ * where the use of SSA is explicitly enabled on the dependent resource directly using
356
+ * {@link KubernetesDependent#useSSA()}.
357
+ * <p>
358
+ * By default, SSA is disabled for {@link ConfigMap} and {@link Secret} resources.
359
+ *
360
+ * @return The set of resource types for which SSA will not be used
361
+ * @since 4.4.0
357
362
*/
358
363
default Set <Class <? extends HasMetadata >> defaultNonSSAResource () {
359
364
return Set .of (ConfigMap .class , Secret .class );
0 commit comments