1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /*
- 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 podtopologyspread
- import (
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/labels"
- )
- type topologyPair struct {
- key string
- value string
- }
- // topologySpreadConstraint is an internal version for v1.TopologySpreadConstraint
- // and where the selector is parsed.
- type topologySpreadConstraint struct {
- maxSkew int32
- topologyKey string
- selector labels.Selector
- }
- // nodeLabelsMatchSpreadConstraints checks if ALL topology keys in spread constraints are present in node labels.
- func nodeLabelsMatchSpreadConstraints(nodeLabels map[string]string, constraints []topologySpreadConstraint) bool {
- for _, c := range constraints {
- if _, ok := nodeLabels[c.topologyKey]; !ok {
- return false
- }
- }
- return true
- }
- func filterTopologySpreadConstraints(constraints []v1.TopologySpreadConstraint, action v1.UnsatisfiableConstraintAction) ([]topologySpreadConstraint, error) {
- var result []topologySpreadConstraint
- for _, c := range constraints {
- if c.WhenUnsatisfiable == action {
- selector, err := metav1.LabelSelectorAsSelector(c.LabelSelector)
- if err != nil {
- return nil, err
- }
- result = append(result, topologySpreadConstraint{
- maxSkew: c.MaxSkew,
- topologyKey: c.TopologyKey,
- selector: selector,
- })
- }
- }
- return result, nil
- }
|