Skip to content

Commit fe7d134

Browse files
authored
docs: add low level api to glossary (#1523)
1 parent f1ead67 commit fe7d134

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

docs/documentation/glossary.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,11 @@ permalink: /docs/glossary
1919
the `Deployment` is the primary resource while `ReplicaSet` is one of the secondary resources
2020
managed by the `Deployment` controller.
2121
- **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

Comments
 (0)