Skip to content

Commit 4d698fa

Browse files
metacosmcsviri
authored andcommitted
fix: minor improvements
Signed-off-by: Chris Laprun <[email protected]>
1 parent 81a6618 commit 4d698fa

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/content/en/docs/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ The Java Operator SDK is a high-level framework designed to make implementing Ku
2828
## Key Features
2929

3030
- Support for both custom and well-known Kubernetes resources
31-
- Automatic finalizer management
31+
- Dependent resource management with optional workflow capabilities
3232
- Event-driven reconciliation
33+
- Automatic finalizer management
3334
- Leader election support
34-
- Dependent resource management
3535
- Comprehensive testing utilities
3636
- Integration with popular Java frameworks
3737

docs/content/en/docs/contributing/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Thank you for considering contributing to the Java Operator SDK project! We're b
77

88
## Code of Conduct
99

10-
We're committed to making this a welcoming, inclusive project. We do not tolerate discrimination, aggressive, or insulting behavior.
10+
We're committed to making this a welcoming, inclusive project. We do not tolerate discrimination, aggressive or insulting behavior.
1111

1212
This project and all participants are bound by our [Code of Conduct]({{baseurl}}/coc). By participating, you're expected to uphold this code. Please report unacceptable behavior to any project admin.
1313

docs/content/en/docs/documentation/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ This section contains detailed documentation for all Java Operator SDK features
1111

1212
- **[Implementing a Reconciler](reconciler/)** - The heart of any operator
1313
- **[Architecture](architecture/)** - How JOSDK works under the hood
14+
- **[Dependent Resources & Workflows](dependent-resource-and-workflows/)** - Managing resource relationships
1415
- **[Configuration](configuration/)** - Customizing operator behavior
1516
- **[Error Handling & Retries](error-handling-retries/)** - Managing failures gracefully
1617

1718
## Advanced Features
1819

19-
- **[Dependent Resources & Workflows](dependent-resource-and-workflows/)** - Managing complex resource relationships
2020
- **[Eventing](eventing/)** - Understanding the event-driven model
2121
- **[Observability](observability/)** - Monitoring and debugging your operators
2222
- **[Other Features](features/)** - Additional capabilities and integrations
2323

24-
Each guide includes practical examples and best practices to help you build robust, production-ready operators.
24+
Each guide includes practical examples and best practices to help you build robust, production-ready operators.

docs/content/en/docs/documentation/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `Controller` class is an internal class managed by the framework and typical
1818
- **[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)** - The primary entry point for developers to implement reconciliation logic
1919
- **[EventSource](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/EventSource.java)** - Represents a source of events that might trigger reconciliation
2020
- **[EventSourceManager](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventSourceManager.java)** - Aggregates all event sources for a controller and manages their lifecycle
21-
- **[ControllerResourceEventSource](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/controller/ControllerResourceEventSource.java)** - Central event source that watches primary resources for changes, propagates events, and caches state
21+
- **[ControllerResourceEventSource](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/controller/ControllerResourceEventSource.java)** - Central event source that watches primary resources associated with a given controller for changes, propagates events and caches state
2222
- **[EventProcessor](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/EventProcessor.java)** - Processes incoming events sequentially per resource while allowing concurrent overall processing. Handles rescheduling and retrying
2323
- **[ReconcilerDispatcher](https://github.com/java-operator-sdk/java-operator-sdk/blob/main/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/ReconciliationDispatcher.java)** - Dispatches requests to appropriate `Reconciler` methods and handles reconciliation results, making necessary Kubernetes API calls
2424

0 commit comments

Comments
 (0)