-
Notifications
You must be signed in to change notification settings - Fork 190
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
Namespace scope service controllers #60
Conversation
add testing information |
Regarding our discussion for ClusterRole and scope issues: aws-controllers-k8s/community#770 |
Can we support watching multiple namespaces at once instead of only one? |
Yes i need to spend more time on this This is just a quick PR to have the feature out |
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.
👍
good to merge after the associated runtime PR merges.
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.
@akartsky please update the go.mod to point to the just-curt v0.2.0 release of runtime:
https://github.com/aws-controllers-k8s/runtime/releases/tag/v0.2.0
@@ -3,7 +3,7 @@ module github.com/aws-controllers-k8s/code-generator | |||
go 1.14 | |||
|
|||
require ( | |||
github.com/aws-controllers-k8s/runtime v0.1.0 | |||
github.com/aws-controllers-k8s/runtime v0.2.0 |
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.
👍
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: A-Hilaly, akartsky, jaypipes, surajkota 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 |
Add ability to listen to specific namespace for service controllers
Tested locally for both positive and negative case
aws-controllers-k8s/community#686
Related PR:
aws-controllers-k8s/runtime#12