mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-10-31 02:08:13 +00:00 
			
		
		
		
	 d40a8f3279
			
		
	
	d40a8f3279
	
	
	
		
			
			failureDomains are only used for PreferredDuringScheduling pod anti-affinity, which is ignored by PodAffinityChecker. This unnecessary requirement was making it hard to move PodAffinityChecker to GeneralPredicates because that would require passing --failure-domains to both kubelet and kube-controller-manager.
		
			
				
	
	
		
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2016 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 util
 | |
| 
 | |
| import (
 | |
| 	"k8s.io/kubernetes/pkg/api/v1"
 | |
| 	metav1 "k8s.io/kubernetes/pkg/apis/meta/v1"
 | |
| 	"k8s.io/kubernetes/pkg/labels"
 | |
| 	"k8s.io/kubernetes/pkg/util/sets"
 | |
| )
 | |
| 
 | |
| // GetNamespacesFromPodAffinityTerm returns a set of names
 | |
| // according to the namespaces indicated in podAffinityTerm.
 | |
| // 1. If the namespaces is nil considers the given pod's namespace
 | |
| // 2. If the namespaces is empty list then considers all the namespaces
 | |
| func getNamespacesFromPodAffinityTerm(pod *v1.Pod, podAffinityTerm v1.PodAffinityTerm) sets.String {
 | |
| 	names := sets.String{}
 | |
| 	if podAffinityTerm.Namespaces == nil {
 | |
| 		names.Insert(pod.Namespace)
 | |
| 	} else if len(podAffinityTerm.Namespaces) != 0 {
 | |
| 		names.Insert(podAffinityTerm.Namespaces...)
 | |
| 	}
 | |
| 	return names
 | |
| }
 | |
| 
 | |
| // PodMatchesTermsNamespaceAndSelector returns true if the given <pod>
 | |
| // matches the namespace and selector defined by <affinityPod>`s <term>.
 | |
| func PodMatchesTermsNamespaceAndSelector(pod *v1.Pod, affinityPod *v1.Pod, term *v1.PodAffinityTerm) (bool, error) {
 | |
| 	namespaces := getNamespacesFromPodAffinityTerm(affinityPod, *term)
 | |
| 	if len(namespaces) != 0 && !namespaces.Has(pod.Namespace) {
 | |
| 		return false, nil
 | |
| 	}
 | |
| 
 | |
| 	selector, err := metav1.LabelSelectorAsSelector(term.LabelSelector)
 | |
| 	if err != nil || !selector.Matches(labels.Set(pod.Labels)) {
 | |
| 		return false, err
 | |
| 	}
 | |
| 	return true, nil
 | |
| }
 | |
| 
 | |
| // NodesHaveSameTopologyKey checks if nodeA and nodeB have same label value with given topologyKey as label key.
 | |
| // Returns false if topologyKey is empty.
 | |
| func NodesHaveSameTopologyKey(nodeA, nodeB *v1.Node, topologyKey string) bool {
 | |
| 	if len(topologyKey) == 0 {
 | |
| 		return false
 | |
| 	}
 | |
| 	return nodeA.Labels != nil && nodeB.Labels != nil && len(nodeA.Labels[topologyKey]) > 0 && nodeA.Labels[topologyKey] == nodeB.Labels[topologyKey]
 | |
| }
 | |
| 
 | |
| type Topologies struct {
 | |
| 	DefaultKeys []string
 | |
| }
 | |
| 
 | |
| // NodesHaveSameTopologyKey checks if nodeA and nodeB have same label value with given topologyKey as label key.
 | |
| // If the topologyKey is nil/empty, check if the two nodes have any of the default topologyKeys, and have same corresponding label value.
 | |
| func (tps *Topologies) NodesHaveSameTopologyKey(nodeA, nodeB *v1.Node, topologyKey string) bool {
 | |
| 	if len(topologyKey) == 0 {
 | |
| 		// assumes this is allowed only for PreferredDuringScheduling pod anti-affinity (ensured by api/validation)
 | |
| 		for _, defaultKey := range tps.DefaultKeys {
 | |
| 			if NodesHaveSameTopologyKey(nodeA, nodeB, defaultKey) {
 | |
| 				return true
 | |
| 			}
 | |
| 		}
 | |
| 		return false
 | |
| 	} else {
 | |
| 		return NodesHaveSameTopologyKey(nodeA, nodeB, topologyKey)
 | |
| 	}
 | |
| }
 |