-
Notifications
You must be signed in to change notification settings - Fork 218
refactor: renaming core classes and APIs #646
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
d478e35
refactor: renaming central classes and APIs
csviri 3b76d5e
Merge branch 'v2' into renamings-reconciler
csviri 5919eac
refactor!: moving reconciler related classes to reconciler package
csviri 74920ab
refactor: moving reconciler and related classes to separate package
csviri 3f92747
refactor!: further renamings
csviri fb58685
refactor!: renamed ConfiguredController to Controller
csviri 55b859d
Merge branch 'v2' into renamings-reconciler
csviri 6f07321
Merge branch 'v2' into renamings-reconciler
csviri 444f7d1
fix: removed unused method
csviri 8b1be24
refactor: reconcile and cleanup
csviri 424f800
refactor: EventDispatcher to ReconciliationDispatcher
csviri adc543a
refactor: associated controller to reconciler
csviri 1d148ac
fix: drawio pic
csviri 9ec3471
refactor!: renaming @Controller to @ControllerAnnotation
csviri 910293a
fix: controllerConfiguration refactor issues in docs
csviri 349fc11
refactor: image consistent naming
csviri 2e0ec8b
fix: cleanup IT
csviri 75b8e0e
fix: fix imports
csviri 8811dc3
fix: improvements
csviri 224bcdf
fix: log message for crd apply in IT
csviri 94980ee
fix: propagate cause to MissingCRD exception
csviri cadbc8a
fix: naming
csviri 0f9eaba
fix: increased minikube version
csviri 725fb06
fix: experiment with CR IT issue
csviri b51e69b
docs: comment on sleep
csviri 0521f8e
fix: formatting
csviri 4105def
refactor: rename ControllerAnnotationProcessor to ControllerConfigura…
metacosm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ jobs: | |
- name: Set up Minikube | ||
uses: manusa/[email protected] | ||
with: | ||
minikube version: 'v1.22.0' | ||
minikube version: 'v1.24.0' | ||
kubernetes version: ${{ matrix.kubernetes }} | ||
driver: 'docker' | ||
- name: Run integration tests | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
...-framework-core/src/main/java/io/javaoperatorsdk/operator/api/EventSourceInitializer.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that if we do this change, we need to remove the
controller
part completely everywhere and only talk aboutReconciler
because otherwiser it gets too confusing. Like what is aController
is our SDK?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Answered above, the controller. Reconciler is just the logic how to reconciler, but this is basically same in controller runtime, the controller is the whole , reconciler is just part of it.
Unfortunate that we don't have a class representing the controller itslef, Maybe to renamae ConfiguredController to Controller?