Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for untaint (1.08 sec)

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

    func (in *Taint) DeepCopyInto(out *Taint) {
    	*out = *in
    	if in.TimeAdded != nil {
    		in, out := &in.TimeAdded, &out.TimeAdded
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Taint.
    func (in *Taint) DeepCopy() *Taint {
    	if in == nil {
    		return nil
    	}
    	out := new(Taint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *Taint) DeepCopyInto(out *Taint) {
    	*out = *in
    	if in.TimeAdded != nil {
    		in, out := &in.TimeAdded, &out.TimeAdded
    		*out = (*in).DeepCopy()
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Taint.
    func (in *Taint) DeepCopy() *Taint {
    	if in == nil {
    		return nil
    	}
    	out := new(Taint)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    				},
    			},
    		},
    		"missing-taint-key": {
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "dedicated-node1",
    			},
    			Spec: core.NodeSpec{
    				// Add a taint with an empty key to a node
    				Taints: []core.Taint{{Key: "", Value: "special-user-1", Effect: "NoSchedule"}},
    			},
    		},
    		"bad-taint-key": {
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "dedicated-node1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/wrappers.go

    	}
    	n.Status.Images = containerImages
    	return n
    }
    
    // Taints applies taints to the inner node.
    func (n *NodeWrapper) Taints(taints []v1.Taint) *NodeWrapper {
    	n.Spec.Taints = taints
    	return n
    }
    
    // Unschedulable applies the unschedulable field.
    func (n *NodeWrapper) Unschedulable(unschedulable bool) *NodeWrapper {
    	n.Spec.Unschedulable = unschedulable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    		// validate the taint value
    		if errs := validation.IsValidLabelValue(currTaint.Value); len(errs) != 0 {
    			allErrors = append(allErrors, field.Invalid(idxPath.Child("value"), currTaint.Value, strings.Join(errs, ";")))
    		}
    		// validate the taint effect
    		allErrors = append(allErrors, validateTaintEffect(&currTaint.Effect, false, idxPath.Child("effect"))...)
    
    		// validate if taint is unique by <key, effect>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

            "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
            "properties": {
              "effect": {
                "description": "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	certDirectory string,
    	rootDirectory string,
    	podLogsDirectory string,
    	imageCredentialProviderConfigFile string,
    	imageCredentialProviderBinDir string,
    	registerNode bool,
    	registerWithTaints []v1.Taint,
    	allowedUnsafeSysctls []string,
    	experimentalMounterPath string,
    	kernelMemcgNotification bool,
    	experimentalNodeAllocatableIgnoreEvictionThreshold bool,
    	minimumGCAge metav1.Duration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - E2e framework: the `node-role.kubernetes.io/master` taint has been removed from the default value of `--non-blocking-taints` flag. You may need to set `--non-blocking-taints` explicitly if the cluster to be tested has nodes with the deprecated `node-role.kubernetes.io/master` taint. ([#118510](https://github.com/kubernetes/kubernetes/pull/118510), [@SataQiu](https://github.com/SataQiu)) [SIG Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  9. staging/src/k8s.io/api/core/v1/generated.pb.go

    }
    
    var xxx_messageInfo_TCPSocketAction proto.InternalMessageInfo
    
    func (m *Taint) Reset()      { *m = Taint{} }
    func (*Taint) ProtoMessage() {}
    func (*Taint) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{209}
    }
    func (m *Taint) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *Taint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

            "type": "object"
          },
          "io.k8s.api.core.v1.Taint": {
            "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
            "properties": {
              "effect": {
                "default": "",
                "description": "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
    - 1.8M bytes
    - Viewed (0)
Back to top