-
Notifications
You must be signed in to change notification settings - Fork 180
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
Refactor BackendManager / BackendStorage. #610
base: master
Are you sure you want to change the base?
Conversation
Skipping CI for Draft Pull Request. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jkh52 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
550f29b
to
c50b7e0
Compare
70b7c34
to
8618b9a
Compare
This also fixes kubernetes-sigs#294
/assign @cheftako |
idTypes: idTypes, | ||
} /* #nosec G404 */ | ||
func (s *DefaultBackendManager) Backend(addr string) (*Backend, error) { | ||
for _, strategy := range s.proxyStrategies { |
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.
Why do we want to consolidate all possible proxy strategies into a single Manager?
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.
Why do we want to consolidate all possible proxy strategies into a single Manager?
At HEAD we have something of a mess, with 1:1 ProxyStrategy to BackendManager / BackendStorage, but logic spread between pkg/server/.*backend_manager.go and pkg/server/server.go. This change improves separation of concerns. For example, the main loop (pkg/server/server.go) does not need to be aware of proxy strategies.
After this consolidation, I can make the (single) BackendManager aware of agent drained state more safely.
The Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Refactor BackendManager / BackendStorage.
The primary reason I want this refactor is to make it simpler to finish #566. But this already large change has these benefits:
--proxy-strategies
logic from ProxyServer to BackendManager (better separation of concerns)