Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RequiredDuringSchedulingRequiredDuringExecution (0.47 sec)

  1. pkg/scheduler/framework/types.go

    		}
    		// TODO: Uncomment this block when implement RequiredDuringSchedulingRequiredDuringExecution.
    		// if len(affinity.PodAffinity.RequiredDuringSchedulingRequiredDuringExecution) != 0 {
    		//	terms = append(terms, affinity.PodAffinity.RequiredDuringSchedulingRequiredDuringExecution...)
    		// }
    	}
    	return terms
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	// TODO:Uncomment below code once RequiredDuringSchedulingRequiredDuringExecution is implemented.
    	// if podAntiAffinity.RequiredDuringSchedulingRequiredDuringExecution != nil {
    	//	allErrs = append(allErrs, validatePodAffinityTerms(podAntiAffinity.RequiredDuringSchedulingRequiredDuringExecution, false,
    	//		fldPath.Child("requiredDuringSchedulingRequiredDuringExecution"))...)
    	// }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// When there are multiple elements, the lists of nodes corresponding to each
    	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
    	// +optional
    	// RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm  `json:"requiredDuringSchedulingRequiredDuringExecution,omitempty"`
    
    	// If the affinity requirements specified by this field are not met at
    	// scheduling time, the pod will not be scheduled onto the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    				Namespace: "ns",
    			},
    			Spec: validPodSpec(
    				// TODO: Uncomment and move this block and move inside NodeAffinity once
    				// RequiredDuringSchedulingRequiredDuringExecution is implemented
    				//		RequiredDuringSchedulingRequiredDuringExecution: &core.NodeSelector{
    				//			NodeSelectorTerms: []core.NodeSelectorTerm{
    				//				{
    				//					MatchExpressions: []core.NodeSelectorRequirement{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// When there are multiple elements, the lists of nodes corresponding to each
    	// podAffinityTerm are intersected, i.e. all terms must be satisfied.
    	// +optional
    	// RequiredDuringSchedulingRequiredDuringExecution []PodAffinityTerm
    
    	// If the affinity requirements specified by this field are not met at
    	// scheduling time, the pod will not be scheduled onto the node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top