-
Notifications
You must be signed in to change notification settings - Fork 762
Add namespace label selector #1786
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
base: master
Are you sure you want to change the base?
Add namespace label selector #1786
Conversation
Signed-off-by: Danila Bobkov <danila.bobkov@flant.com>
|
Welcome @W1seKappa! |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @W1seKappa. Thanks for your PR. I'm waiting for a github.com member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions 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. |
Signed-off-by: Danila Bobkov <danila.bobkov@flant.com>
|
@ingvagabund Hi, I'm happy to continue the discussion based on the initiative from this pr1501. |
| return indexer, nil | ||
| } | ||
|
|
||
| func getNamespacesListByLabelSelector(indexName string, labelSelector *metav1.LabelSelector, handle frameworktypes.Handle) (cache.Indexer, error) { |
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 understand the idea here. If a namespace is matched by the label selector it's returned. If it is not an empty list is returned. I.e.:
- indexer.ByIndex(indexName, NSmatched) -> {NSmatched} // list with a single ns
- indexer.ByIndex(indexName, NSNotmatched) -> {} // empty list
On the other hand getNamespacesListByLabelSelector gives the belief all namespaces matching a label selector are returned. I.e. a label selector is the key, not a namespace. I.e.
- indexer.ByIndex(indexName, LS1) -> list of namespaces matching LS1
- ...
- indexer.ByIndex(indexName, LSN) -> list of namespaces matching LSN
Given each profile can have its own DefaultEvictor configuration with a different label selector the current global "namespaceWithLabelSelector" indexer will not work correctly as once the first indexer gets registered, any second attempt returns the first indexer. So the second label selector will get ignored and all DefaultEvictors will share the first label selector.
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.
@W1seKappa thank you for taking over. As the next step I suggest to create another unit test that have two profiles configured. Each with a different label selector and to make sure both evictors evict distinct set of namespaces to correctly validate the functionality. There's no need to create actual profiles. Just mimicking it through creating two default evictors over the same namespace informer.
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.
@ingvagabund Hello, I manually tested the functionality you mentioned. Indeed, it is currently not working correctly. I see two ways to solve this problem:
- Create a separate index for each set of mathLabels.
namespaceLabelSelector:
matchLabels:
env: prod
animal: catIt will create its own index namespaceWithLabelSelector-animal=cat,env=prod.
namespaceLabelSelector:
matchLabels:
env: prod It will create its own index namespaceWithLabelSelector-env=prod.
This solution is currently implemented in the code. I understand the need for some optimizations, but I wanted to develop the core idea first.
2. Create an index for each pair in matchLabels.
These same configuration files will generate 3 indexes instead of 2:
namespaceWithLabelSelector-env=prod
namespaceWithLabelSelector-env=dev
namespaceWithLabelSelector-animal=cat
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.
One drawback of creating indexer for each defaultplugin/nslabelselector is the number of indexers will grow with each profile. In addition, #1499 is asking for the same. So each plugin will have its own indexer in general. With #1758 getting later extended as another increase.
In the worst case all ns label selectors will be different. Allowing each plugin to choose the indexer name may lead to name collisions. Luckily, the label selector plays no role in the naming as each plugin has a unique position in the configuration. To make the ns indexer registration collision free the framework itself can expose a new method for the registration.
E.g.
type Handle interface {
...
RegisterNSIndexer(indexer func(obj interface{}) ([]string, error)) error
GetNSIndexer() (cache.Indexer, error)
...
}or similar construct. Each plugin is injected with a Handle instance. So the indexer name can get generated based on the profile/plugin configuration indices. E.g. "profile_idx_pluginname_idx_nslabelselector".
In the best case all the ns label selectors can be identical. So the framework could do some smart indexing of the label selectors. With a match expression as another way. Leaving admins to take the responsibility of making the label selectors/match expressions properly chosen. E.g. avoiding "env=prod,animal=cat" and "animal=cat,env=prod" case.
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.
An indexer is a nice way to quickly detect whether a namespace matches a label selector. With the current approach the indexer creates an optimal distribution of keys in a hash table. Either a namespace is matched (the ns has a hash key) or is not matched (the ns does not have a hash key). Trying to combine multiple label selectors into the same indexer would make the searching and updating less efficient.
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.
Note: right now the configuration offers only a global node selector. Yet, it's also a valid case to have two different profiles targeting two distinct node pools. So the concept of growing the number of indexers with the number of profiles spans beyond the namespace label selector.
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.
@ingvagabund, Hello!
If I understood correctly, at this stage it was necessary to add tests to this solution. I've done that.
Next, the indexing framework needs to be refactored. Right?
I would be happy to participate.
Signed-off-by: Danila Bobkov <danila.bobkov@flant.com>
|
/ok-to-test |
|
@W1seKappa: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. DetailsInstructions 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. I understand the commands that are listed here. |
|
PR needs rebase. DetailsInstructions 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. |
Description
Added namespace label selector for filtering pods in the DefaultEvictor plugin.
This pull request was created to finalize the initiative from that pr1501
Checklist
Please ensure your pull request meets the following criteria before submitting
for review, these items will be used by reviewers to assess the quality and
completeness of your changes: