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: caffeine-bounded-cache-support/src/test/java/io/javaoperatorsdk/operator/processing/event/source/cache/sample/AbstractTestReconciler.java
Copy file name to clipboardExpand all lines: docs/documentation/v5-0-migration.md
+5
Original file line number
Diff line number
Diff line change
@@ -12,3 +12,8 @@ permalink: /docs/v5-0-migration
12
12
1.[Result of managed dependent resources](https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/dependent/managed/ManagedDependentResourceContext.java#L55-L57)
13
13
is not `Optional` anymore. In case you use this result, simply use the result
14
14
objects directly.
15
+
2.`EventSourceInitializer` is not a separate interface anymore. It is part of the `Reconciler` interface with a
16
+
default implementation. You can simply remove this interface from your reconciler. The
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventSourceManager.java
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/EventSource.java
+2-4
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,8 @@
7
7
8
8
/**
9
9
* Creates an event source to trigger your reconciler whenever something happens to a secondary or
10
-
* external resource that would not normally trigger your reconciler (as the primary resources are
11
-
* not changed). To register EventSources with so that your reconciler is triggered, please make
Copy file name to clipboardExpand all lines: operator-framework-core/src/test/java/io/javaoperatorsdk/operator/api/reconciler/EventSourceUtilsTest.java
Copy file name to clipboardExpand all lines: operator-framework-core/src/test/java/io/javaoperatorsdk/operator/processing/event/source/controller/ControllerResourceEventSourceTest.java
Copy file name to clipboardExpand all lines: operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/bulkdependent/StandaloneBulkDependentReconciler.java
Copy file name to clipboardExpand all lines: operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/changenamespace/ChangeNamespaceTestReconciler.java
Copy file name to clipboardExpand all lines: operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/clusterscopedresource/ClusterScopedCustomResourceReconciler.java
Copy file name to clipboardExpand all lines: operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/complexdependent/ComplexDependentReconciler.java
Copy file name to clipboardExpand all lines: operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/createupdateeventfilter/CreateUpdateEventFilterTestReconciler.java
Copy file name to clipboardExpand all lines: operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/dependentreinitialization/DependentReInitializationReconciler.java
0 commit comments