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/glossary.md
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,4 +19,11 @@ permalink: /docs/glossary
19
19
the `Deployment` is the primary resource while `ReplicaSet` is one of the secondary resources
20
20
managed by the `Deployment` controller.
21
21
-**Dependent Resource** - a feature of JOSDK, to make it easier to manage secondary resources. A
22
-
dependent resource represents a secondary resource with related reconciliation logic.
22
+
dependent resource represents a secondary resource with related reconciliation logic.
23
+
-**Low-level API** - a reconciler implementation without using the Dependent Resource and Workflow features.
24
+
Simply just implementing a logic using
25
+
the [`Reconciler`](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/Reconciler.java)
26
+
interface. See
27
+
the [WebPage sample](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/sample-operators/webpage/src/main/java/io/javaoperatorsdk/operator/sample/WebPageReconciler.java)
28
+
. See also the same logic
29
+
implemented using [Dependent Resource and Workflows](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