-
Notifications
You must be signed in to change notification settings - Fork 256
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
source/cpu: deprecate cpu-rdt.* labels #1114
source/cpu: deprecate cpu-rdt.* labels #1114
Conversation
✅ Deploy Preview for kubernetes-sigs-nfd ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
Document built-in RDT labels to be deprecated and removed in a future release. The plan is that the default built-in RDT labels would not be created anymore, but the RDT features would still be available for NodeFeatureRules to consume. The RDT labels are not very useful (they don't e.g indicate if the features are really enabled in kernel or if the resctrlfs is mounted).
1819b13
to
6cb5e99
Compare
@PiotrProkop any thoughts on this? |
For now we are consuming RDT labels via our custom "sources": {
"custom":[
{
"name": "RDTL3CA",
"labels": {
"feature.node.kubernetes.io/cpu-rdt.RDTL3CA": "true"
},
"matchFeatures": [
{
"feature": "cpu.rdt",
"matchExpressions": {
"RDTL3CA": {"op": "Exists"}
}
}
]
}
], but the plan is to migrate to |
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ArangoGutierrez, marquiz 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 |
LGTM label has been added. Git tree hash: bed86c7b9e8a75dbe481a0cc9debb4f515893c10
|
Document built-in RDT labels to be deprecated and removed in a future release. The plan is that the default built-in RDT labels would not be created anymore, but the RDT features would still be available for NodeFeatureRules to consume.
The RDT labels are not very useful (they don't e.g indicate if the features are really enabled in kernel or if the resctrlfs is mounted).
Refs #1113