You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
now contains all the utility methods used for event sources naming that were previously defined in
19
19
the `EventSourceInitializer` interface.
20
-
3.`ManagedDependentResourceContext` has been renamed to `ManagedWorkflowAndDependentResourceContext` and is accessed
20
+
3. Patching status through `UpdateControl` like the `patchStatus` method now by default
21
+
uses Server Side Apply instead of simple patch. To use the former approach, use the feature flag
22
+
in [`ConfigurationService`](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationService.java#L400-L400)
23
+
!!! IMPORTANT !!!
24
+
Migration from a non-SSA based controller to SSA based controller can cause problems, due to known issues.
25
+
See the following [integration test](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/StatusPatchSSAMigrationIT.java#L71-L82) where it is demonstrated.
26
+
Also, the related part of a [workaround](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/StatusPatchSSAMigrationIT.java#L110-L116).
27
+
4.`ManagedDependentResourceContext` has been renamed to `ManagedWorkflowAndDependentResourceContext` and is accessed
21
28
via the accordingly renamed `managedWorkflowAndDependentResourceContext` method.
Copy file name to clipboardexpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationServiceOverrider.java
+15-1
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ public class ConfigurationServiceOverrider {
Copy file name to clipboardexpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcher.java
Copy file name to clipboardexpand all lines: operator-framework-core/src/test/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcherTest.java
0 commit comments