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/dependent-resources.md
+38-18Lines changed: 38 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,9 +143,14 @@ dependent resources. You can annotate your reconciler with
143
143
appropriate steps to wire everything together and call your
144
144
`DependentResource` implementations `reconcile` method before your primary resource is reconciled. This makes sense in
145
145
most use cases where the logic associated with the primary resource is usually limited to status handling based on the
146
-
state of the secondary resources. This behavior and automated handling is referred to as "managed" because
147
-
the `DependentResource`
148
-
implementations are managed by JOSDK.
146
+
state of the secondary resources and the resources are not dependent on each other.
147
+
148
+
Note that all dependents will be reconciled in order. If an exception happens in one or more reconciliations, the
149
+
followup resources will be reconciled.
150
+
151
+
This behavior and automated handling is referred to as "managed" because the `DependentResource` instances
152
+
are managed by JOSDK.
153
+
149
154
See [related sample](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/sample-operators/webpage/src/main/java/io/javaoperatorsdk/operator/sample/WebPageManagedDependentsReconciler.java):
0 commit comments