Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
Demonstrates the basic expectation pattern using ExpectationManager with triggerReconcilerOnAllEvents = true.
This pattern allows reconcilers to wait for specific conditions to be met (like a Deployment having 3 ready replicas)
before proceeding with status updates. The test shows both successful expectation fulfillment and timeout handling.
Requires @ControllerConfiguration(triggerReconcilerOnAllEvents = true) for proper operation.\
Requires @ControllerConfiguration(triggerReconcilerOnAllEvents = true) for proper operation.
""")
class ExpectationIT {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
Demonstrates the PeriodicCleanerExpectationManager pattern which provides automatic cleanup of stale expectations.
This pattern works without requiring @ControllerConfiguration(triggerReconcilerOnAllEvents = true) and automatically
cleans up stale expectations periodically (default: 1 minute). This is ideal for 'set and forget' scenarios where
you want the same expectation API and functionality as the regular ExpectationManager but with automatic lifecycle management.\
you want the same expectation API and functionality as the regular ExpectationManager but with automatic lifecycle management.
""")
class PeriodicCleanerExpectationIT {

Expand Down