feat: add EnergyGradient scheduler plugin for EGS#944
feat: add EnergyGradient scheduler plugin for EGS#944oerc-s wants to merge 1 commit intokubernetes-sigs:masterfrom
Conversation
Adds scheduler plugin that scores nodes based on energy gradients exposed via /egs/v1/gradient endpoints. Nodes exposing higher marginal_capacity_kw with lower instantaneous_cost_index and higher thermal_headroom receive higher scores, enabling energy-aware workload placement. Scoring: marginal_kw × (1 - cost_index) × thermal_headroom Node annotation: egs.ear-standard.org/endpoint Ref: https://ear-standard.org
|
Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it. 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. |
|
|
Welcome @oerc-s! |
|
Hi @oerc-s. Thanks for your PR. I'm waiting for a kubernetes-sigs 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. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: oerc-s 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 |
✅ Deploy Preview for kubernetes-sigs-scheduler-plugins canceled.
|
|
/ok-to-test |
|
@oerc-s: 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. |
Summary
Adds scheduler plugin that scores nodes based on energy gradients exposed via
/egs/v1/gradientendpoints.What is EGS?
EGS (Energy-Gradient Signaling) is a standard for exposing executable marginal energy capacity to autonomous systems.
Autonomous allocators select capacity via gradient. This plugin enables Kubernetes to participate in energy-aware allocation.
Plugin
EnergyGradientegs.ear-standard.org/endpointScoring
Nodes with higher marginal capacity, lower cost, and higher thermal headroom receive higher scores.
Files
pkg/energygradient/energygradient.go— Plugin implementationpkg/energygradient/README.md— DocumentationReference