123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- /*
- Copyright 2019 The Kubernetes Authors.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package nodelabel
- import (
- "context"
- "fmt"
- v1 "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/labels"
- "k8s.io/apimachinery/pkg/runtime"
- framework "k8s.io/kubernetes/pkg/scheduler/framework/v1alpha1"
- "k8s.io/kubernetes/pkg/scheduler/nodeinfo"
- )
- // Name of this plugin.
- const Name = "NodeLabel"
- const (
- // ErrReasonPresenceViolated is used for CheckNodeLabelPresence predicate error.
- ErrReasonPresenceViolated = "node(s) didn't have the requested labels"
- )
- // Args holds the args that are used to configure the plugin.
- type Args struct {
- // PresentLabels should be present for the node to be considered a fit for hosting the pod
- PresentLabels []string `json:"presentLabels,omitempty"`
- // AbsentLabels should be absent for the node to be considered a fit for hosting the pod
- AbsentLabels []string `json:"absentLabels,omitempty"`
- // Nodes that have labels in the list will get a higher score.
- PresentLabelsPreference []string `json:"presentLabelsPreference,omitempty"`
- // Nodes that don't have labels in the list will get a higher score.
- AbsentLabelsPreference []string `json:"absentLabelsPreference,omitempty"`
- }
- // validateArgs validates that presentLabels and absentLabels do not conflict.
- func validateNoConflict(presentLabels []string, absentLabels []string) error {
- m := make(map[string]struct{}, len(presentLabels))
- for _, l := range presentLabels {
- m[l] = struct{}{}
- }
- for _, l := range absentLabels {
- if _, ok := m[l]; ok {
- return fmt.Errorf("detecting at least one label (e.g., %q) that exist in both the present(%+v) and absent(%+v) label list", l, presentLabels, absentLabels)
- }
- }
- return nil
- }
- // New initializes a new plugin and returns it.
- func New(plArgs *runtime.Unknown, handle framework.FrameworkHandle) (framework.Plugin, error) {
- args := Args{}
- if err := framework.DecodeInto(plArgs, &args); err != nil {
- return nil, err
- }
- if err := validateNoConflict(args.PresentLabels, args.AbsentLabels); err != nil {
- return nil, err
- }
- if err := validateNoConflict(args.PresentLabelsPreference, args.AbsentLabelsPreference); err != nil {
- return nil, err
- }
- return &NodeLabel{
- handle: handle,
- Args: args,
- }, nil
- }
- // NodeLabel checks whether a pod can fit based on the node labels which match a filter that it requests.
- type NodeLabel struct {
- handle framework.FrameworkHandle
- Args
- }
- var _ framework.FilterPlugin = &NodeLabel{}
- var _ framework.ScorePlugin = &NodeLabel{}
- // Name returns name of the plugin. It is used in logs, etc.
- func (pl *NodeLabel) Name() string {
- return Name
- }
- // Filter invoked at the filter extension point.
- // It checks whether all of the specified labels exists on a node or not, regardless of their value
- //
- // Consider the cases where the nodes are placed in regions/zones/racks and these are identified by labels
- // In some cases, it is required that only nodes that are part of ANY of the defined regions/zones/racks be selected
- //
- // Alternately, eliminating nodes that have a certain label, regardless of value, is also useful
- // A node may have a label with "retiring" as key and the date as the value
- // and it may be desirable to avoid scheduling new pods on this node.
- func (pl *NodeLabel) Filter(ctx context.Context, _ *framework.CycleState, pod *v1.Pod, nodeInfo *nodeinfo.NodeInfo) *framework.Status {
- node := nodeInfo.Node()
- if node == nil {
- return framework.NewStatus(framework.Error, "node not found")
- }
- nodeLabels := labels.Set(node.Labels)
- check := func(labels []string, presence bool) bool {
- for _, label := range labels {
- exists := nodeLabels.Has(label)
- if (exists && !presence) || (!exists && presence) {
- return false
- }
- }
- return true
- }
- if check(pl.PresentLabels, true) && check(pl.AbsentLabels, false) {
- return nil
- }
- return framework.NewStatus(framework.UnschedulableAndUnresolvable, ErrReasonPresenceViolated)
- }
- // Score invoked at the score extension point.
- func (pl *NodeLabel) Score(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) (int64, *framework.Status) {
- nodeInfo, err := pl.handle.SnapshotSharedLister().NodeInfos().Get(nodeName)
- if err != nil || nodeInfo.Node() == nil {
- return 0, framework.NewStatus(framework.Error, fmt.Sprintf("getting node %q from Snapshot: %v, node is nil: %v", nodeName, err, nodeInfo.Node() == nil))
- }
- node := nodeInfo.Node()
- score := int64(0)
- for _, label := range pl.PresentLabelsPreference {
- if labels.Set(node.Labels).Has(label) {
- score += framework.MaxNodeScore
- }
- }
- for _, label := range pl.AbsentLabelsPreference {
- if !labels.Set(node.Labels).Has(label) {
- score += framework.MaxNodeScore
- }
- }
- // Take average score for each label to ensure the score doesn't exceed MaxNodeScore.
- score /= int64(len(pl.PresentLabelsPreference) + len(pl.AbsentLabelsPreference))
- return score, nil
- }
- // ScoreExtensions of the Score plugin.
- func (pl *NodeLabel) ScoreExtensions() framework.ScoreExtensions {
- return nil
- }
|