Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 420 for NodeSelector (0.38 sec)

  1. pkg/apis/node/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Scheduling) DeepCopyInto(out *Scheduling) {
    	*out = *in
    	if in.NodeSelector != nil {
    		in, out := &in.NodeSelector, &out.NodeSelector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.Tolerations != nil {
    		in, out := &in.Tolerations, &out.Tolerations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.ActiveDeadlineSeconds != nil {
    		in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.NodeSelector != nil {
    		in, out := &in.NodeSelector, &out.NodeSelector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/node/v1alpha1/generated.proto

    // RuntimeClass.
    message Scheduling {
      // nodeSelector lists labels that must be present on nodes that support this
      // RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
      // node matched by this selector. The RuntimeClass nodeSelector is merged
      // with a pod's existing nodeSelector. Any conflicts will cause the pod to
      // be rejected in admission.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. pkg/apis/node/validation/validation_test.go

    		scheduling: &node.Scheduling{
    			NodeSelector: map[string]string{"valid": "yes"},
    			Tolerations: []core.Toleration{{
    				Key:      "valid",
    				Operator: core.TolerationOpExists,
    				Effect:   core.TaintEffectNoSchedule,
    			}},
    		},
    	}, {
    		name:       "empty scheduling",
    		scheduling: &node.Scheduling{},
    	}, {
    		name: "invalid nodeSelector",
    		scheduling: &node.Scheduling{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // ClusterCIDRSpec defines the desired state of ClusterCIDR.
    message ClusterCIDRSpec {
      // nodeSelector defines which nodes the config is applicable to.
      // An empty or nil nodeSelector selects all nodes.
      // This field is immutable.
      // +optional
      optional k8s.io.api.core.v1.NodeSelector nodeSelector = 1;
    
      // perNodeHostBits defines the number of host bits to be configured per node.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. plugin/pkg/admission/runtimeclass/admission_test.go

    		}
    	}
    	return pod
    }
    
    func newSchedulingValidPod(name string, nodeSelector map[string]string, tolerations []core.Toleration) *core.Pod {
    	return &core.Pod{
    		ObjectMeta: metav1.ObjectMeta{Name: name, Namespace: "test"},
    		Spec: core.PodSpec{
    			NodeSelector: nodeSelector,
    			Tolerations:  tolerations,
    		},
    	}
    }
    
    func getGuaranteedRequirements() core.ResourceRequirements {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 17 01:30:14 UTC 2022
    - 17.5K bytes
    - Viewed (0)
  7. pkg/apis/node/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_Scheduling_To_node_Scheduling(in *v1beta1.Scheduling, out *node.Scheduling, s conversion.Scope) error {
    	out.NodeSelector = *(*map[string]string)(unsafe.Pointer(&in.NodeSelector))
    	out.Tolerations = *(*[]core.Toleration)(unsafe.Pointer(&in.Tolerations))
    	return nil
    }
    
    // Convert_v1beta1_Scheduling_To_node_Scheduling is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.ActiveDeadlineSeconds != nil {
    		in, out := &in.ActiveDeadlineSeconds, &out.ActiveDeadlineSeconds
    		*out = new(int64)
    		**out = **in
    	}
    	if in.NodeSelector != nil {
    		in, out := &in.NodeSelector, &out.NodeSelector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/node/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Scheduling) DeepCopyInto(out *Scheduling) {
    	*out = *in
    	if in.NodeSelector != nil {
    		in, out := &in.NodeSelector, &out.NodeSelector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.Tolerations != nil {
    		in, out := &in.Tolerations, &out.Tolerations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/node/v1beta1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *Scheduling) DeepCopyInto(out *Scheduling) {
    	*out = *in
    	if in.NodeSelector != nil {
    		in, out := &in.NodeSelector, &out.NodeSelector
    		*out = make(map[string]string, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.Tolerations != nil {
    		in, out := &in.Tolerations, &out.Tolerations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
Back to top