Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for untaint (0.21 sec)

  1. cmd/kubemark/app/hollow_node.go

    	ServerPort              int
    	ContentType             string
    	QPS                     float32
    	Burst                   int
    	NodeLabels              map[string]string
    	RegisterWithTaints      []v1.Taint
    	MaxPods                 int
    	ExtendedResources       map[string]string
    	UseHostImageService     bool
    
    	// Deprecated config; remove these with the corresponding flags
    	UseRealProxier       bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_Taint = map[string]string{
    	"":          "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
    	"key":       "Required. The taint key to be applied to a node.",
    	"value":     "The taint value corresponding to the taint key.",
    	"effect":    "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/constants/constants.go

    	UpgradeConfigurationKind = "UpgradeConfiguration"
    )
    
    var (
    	// ControlPlaneTaint is the taint to apply on the PodSpec for being able to run that Pod on the control-plane
    	ControlPlaneTaint = v1.Taint{
    		Key:    LabelNodeRoleControlPlane,
    		Effect: v1.TaintEffectNoSchedule,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    message Taint {
      // Required. The taint key to be applied to a node.
      optional string key = 1;
    
      // The taint value corresponding to the taint key.
      // +optional
      optional string value = 2;
    
      // Required. The effect of the taint on pods
      // that do not tolerate the taint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // The node this Taint is attached to has the "effect" on
    // any pod that does not tolerate the Taint.
    type Taint struct {
    	// Required. The taint key to be applied to a node.
    	Key string `json:"key" protobuf:"bytes,1,opt,name=key"`
    	// The taint value corresponding to the taint key.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Taint)(nil), (*core.Taint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Taint_To_core_Taint(a.(*v1.Taint), b.(*core.Taint), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.Taint)(nil), (*v1.Taint)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	SchedulerQueueingHints featuregate.Feature = "SchedulerQueueingHints"
    
    	// owner: @atosatto @yuanchen8911
    	// kep: http://kep.k8s.io/3902
    	// beta: v1.29
    	//
    	// Decouples Taint Eviction Controller, performing taint-based Pod eviction, from Node Lifecycle Controller.
    	SeparateTaintEvictionController featuregate.Feature = "SeparateTaintEvictionController"
    
    	// owner: @munnerz
    	// kep: http://kep.k8s.io/4193
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	out.Name = in.Name
    	out.CRISocket = in.CRISocket
    	out.Taints = *(*[]corev1.Taint)(unsafe.Pointer(&in.Taints))
    	out.KubeletExtraArgs = *(*[]kubeadm.Arg)(unsafe.Pointer(&in.KubeletExtraArgs))
    	out.IgnorePreflightErrors = *(*[]string)(unsafe.Pointer(&in.IgnorePreflightErrors))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    func (in *NodeRegistrationOptions) DeepCopyInto(out *NodeRegistrationOptions) {
    	*out = *in
    	if in.Taints != nil {
    		in, out := &in.Taints, &out.Taints
    		*out = make([]corev1.Taint, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.KubeletExtraArgs != nil {
    		in, out := &in.KubeletExtraArgs, &out.KubeletExtraArgs
    		*out = make([]Arg, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.deepcopy.go

    func (in *NodeRegistrationOptions) DeepCopyInto(out *NodeRegistrationOptions) {
    	*out = *in
    	if in.Taints != nil {
    		in, out := &in.Taints, &out.Taints
    		*out = make([]corev1.Taint, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.KubeletExtraArgs != nil {
    		in, out := &in.KubeletExtraArgs, &out.KubeletExtraArgs
    		*out = make([]Arg, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top