Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Java Operator SDK is a production-ready framework for building Kubernetes Operat
java-operator-sdk/
├── operator-framework-core/ # Core reconciliation engine and API
├── operator-framework/ # Main operator framework implementation
├── operator-framework-junit5/ # Testing utilities and extensions
├── operator-framework-junit/ # Testing utilities and extensions
├── operator-framework-bom/ # Bill of Materials for dependency management
├── micrometer-support/ # Metrics integration
├── open-telemetry-support/ # Distributed tracing support
Expand Down Expand Up @@ -121,7 +121,7 @@ java-operator-sdk/

### Integration Tests

- Use `LocallyRunOperatorExtension` or `OperatorExtension` from `operator-framework-junit5`
- Use `LocallyRunOperatorExtension` or `OperatorExtension` from `operator-framework-junit`
- Test against real Kubernetes API (typically via test cluster like minikube or kind)
- Suffix with `IT` (e.g., `MyReconcilerIT`)
- Located in `src/test/java`
Expand Down
Loading