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
feat: support for declarative management of dependent resources
- Kubernetes-native resources are automatically handled without users
having to deal with explicit event sources
- Reconcilers and event sources can exchange information via the
`EventSourceContext`
- Declarative management is completely opt-in and can cohabit with
"traditional" handling i.e. it's possible to have only part of the
dependents being declared via annotations and others explicitly
handled (though from a maintenance perspective it's better to stick
to one approach or the other)
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ControllerConfigurationOverrider.java
+2-1
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,8 @@ public ControllerConfiguration<R> build() {
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/DefaultControllerConfiguration.java
0 commit comments