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
Copy file name to clipboardexpand all lines: docs/documentation/v5-0-migration.md
+4
Original file line number
Diff line number
Diff line change
@@ -20,5 +20,9 @@ permalink: /docs/v5-0-migration
20
20
3. Patching status through `UpdateControl` like the `patchStatus` method now by default
21
21
uses Server Side Apply instead of simple patch. To use the former approach, use the feature flag
22
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).
23
27
4.`ManagedDependentResourceContext` has been renamed to `ManagedWorkflowAndDependentResourceContext` and is accessed
24
28
via the accordingly renamed `managedWorkflowAndDependentResourceContext` method.
0 commit comments