Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for untaint (0.13 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		return
    	}
    	// We should not see any taint on the node(especially the Not-Ready taint with NoExecute effect).
    	if taintutils.TaintExists(node3.Spec.Taints, NotReadyTaintTemplate) || len(node3.Spec.Taints) > 0 {
    		t.Errorf("Found taint %v in %v, which should not be present", NotReadyTaintTemplate, node3.Spec.Taints)
    	}
    }
    
    // TestApplyNoExecuteTaintsToNodesEnqueueTwice ensures we taint every node with NoExecute even if enqueued twice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. pkg/controller/daemon/daemon_controller_test.go

    	noScheduleTaints      = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}
    	noExecuteTaints       = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoExecute"}}
    )
    
    func nowPointer() *metav1.Time {
    	now := metav1.Now()
    	return &now
    }
    
    var (
    	nodeNotReady = []v1.Taint{{
    		Key:       v1.TaintNodeNotReady,
    		Effect:    v1.TaintEffectNoExecute,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

          "io.k8s.api.core.v1.Toleration": {
            "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.",
                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"45adffcb86a05ee4d91263a6115dda011b805d442c60836963cb8378",
    		"His money is twice tainted: 'taint yours and 'taint mine.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status_test.go

    	kubelet.registerWithAPIServer()
    
    	// Check the unschedulable taint.
    	got := gotNode.(*v1.Node)
    	unschedulableTaint := &v1.Taint{
    		Key:    v1.TaintNodeUnschedulable,
    		Effect: v1.TaintEffectNoSchedule,
    	}
    
    	require.Equal(t,
    		true,
    		taintutil.TaintExists(got.Spec.Taints, unschedulableTaint),
    		"test unschedulable taint for TaintNodesByCondition")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        "io.k8s.api.core.v1.Toleration": {
          "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.",
              "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    	honorPolicy        = v1.NodeInclusionPolicyHonor
    	fooSelector        = st.MakeLabelSelector().Exists("foo").Obj()
    	barSelector        = st.MakeLabelSelector().Exists("bar").Obj()
    
    	taints = []v1.Taint{{Key: v1.TaintNodeUnschedulable, Value: "", Effect: v1.TaintEffectNoSchedule}}
    )
    
    func (p *criticalPaths) sort() {
    	if p[0].MatchNum == p[1].MatchNum && p[0].TopologyValue > p[1].TopologyValue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Only set sysctls for infra containers ([#32383](https://github.com/kubernetes/kubernetes/pull/32383), [@sttts](https://github.com/sttts))
    * fix kubectl taint e2e flake: add retries for removing taint ([#33872](https://github.com/kubernetes/kubernetes/pull/33872), [@kevin-wangzefeng](https://github.com/kevin-wangzefeng))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top