Skip to content

Commit 08a0f4a

Browse files
committed
docs: improve javadoc
1 parent 15bb9bd commit 08a0f4a

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationService.java

+11-6
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ default ExecutorServiceManager getExecutorServiceManager() {
338338
* resources are created/updated and match was change to use
339339
* <a href="https://kubernetes.io/docs/reference/using-api/server-side-apply/">Server-Side
340340
* Apply</a> (SSA) by default.
341-
*
341+
* <p>
342342
* SSA based create/update can be still used with the legacy matching, just overriding the match
343343
* method of Kubernetes Dependent Resource.
344344
*
@@ -349,11 +349,16 @@ default boolean ssaBasedCreateUpdateMatchForDependentResources() {
349349
}
350350

351351
/**
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
357362
*/
358363
default Set<Class<? extends HasMetadata>> defaultNonSSAResource() {
359364
return Set.of(ConfigMap.class, Secret.class);

0 commit comments

Comments
 (0)