Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for MainKt (0.17 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			node: nodeWithTaints("nodeA", []v1.Taint{{Key: "foo", Value: "bar", Effect: "NoSchedule"}}),
    			wantStatus: framework.NewStatus(framework.UnschedulableAndUnresolvable,
    				"node(s) had untolerated taint {foo: bar}"),
    		},
    		{
    			name: "The pod has a toleration that keys and values match the taint on the node, the effect of toleration is empty, " +
    				"and the effect of taint is NoSchedule. Pod can be scheduled onto the node",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/controller/tainteviction/taint_eviction_test.go

    	go controller.Run(ctx)
    
    	// no taint
    	nodeIndexer.Add(untaintedNode)
    	controller.handleNodeUpdate(ctx, nodeUpdateItem{"node1"})
    	// verify pod is not queued for deletion
    	if controller.taintEvictionQueue.GetWorkerUnsafe(podNamespacedName.String()) != nil {
    		t.Fatalf("pod queued for deletion with no taints")
    	}
    
    	// no taint -> infinitely tolerated taint
    	nodeIndexer.Update(singleTaintedNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. pkg/controller/controller_utils_test.go

    		nodeName       string
    		taintsToRemove []*v1.Taint
    		expectedTaints []v1.Taint
    		requestCount   int
    	}{
    		{
    			name: "remove one taint from node",
    			nodeHandler: &testutil.FakeNodeHandler{
    				Existing: []*v1.Node{
    					{
    						ObjectMeta: metav1.ObjectMeta{
    							Name: "node1",
    						},
    						Spec: v1.NodeSpec{
    							Taints: []v1.Taint{
    								{Key: "key1", Value: "value1", Effect: "NoSchedule"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers_test.go

    		Name      string
    		Changed   bool
    		OldTaints []v1.Taint
    		NewTaints []v1.Taint
    	}{
    		{
    			Name:      "no taint changed",
    			Changed:   false,
    			OldTaints: []v1.Taint{{Key: "key", Value: "value"}},
    			NewTaints: []v1.Taint{{Key: "key", Value: "value"}},
    		},
    		{
    			Name:      "taint value changed",
    			Changed:   true,
    			OldTaints: []v1.Taint{{Key: "key", Value: "value1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. pkg/controller/tainteviction/taint_eviction.go

    			Message: "Taint manager: deleting due to NoExecute taint",
    		})
    		if updated {
    			if _, _, _, err := utilpod.PatchPodStatus(ctx, c, pod.Namespace, pod.Name, pod.UID, pod.Status, *newStatus); err != nil {
    				return err
    			}
    		}
    	}
    	return c.CoreV1().Pods(ns).Delete(ctx, name, metav1.DeleteOptions{})
    }
    
    func getNoExecuteTaints(taints []v1.Taint) []v1.Taint {
    	result := []v1.Taint{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. pkg/kubelet/lifecycle/predicate_test.go

    				Spec: v1.NodeSpec{
    					Taints: []v1.Taint{
    						{Key: "foo", Effect: v1.TaintEffectNoSchedule},
    						{Key: "bar", Effect: v1.TaintEffectNoExecute},
    					},
    				},
    				Status: v1.NodeStatus{Capacity: makeResources(10, 20, 32, 0, 0, 0), Allocatable: makeAllocatableResources(10, 20, 32, 0, 0, 0)},
    			},
    			name: "taint/toleration match",
    		},
    		{
    			pod:      &v1.Pod{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. pkg/apis/core/helper/helpers.go

    // and converts it to the []Taint type in core.
    func GetTaintsFromNodeAnnotations(annotations map[string]string) ([]core.Taint, error) {
    	var taints []core.Taint
    	if len(annotations) > 0 && annotations[core.TaintsAnnotationKey] != "" {
    		err := json.Unmarshal([]byte(annotations[core.TaintsAnnotationKey]), &taints)
    		if err != nil {
    			return []core.Taint{}, err
    		}
    	}
    	return taints, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			if err != nil {
    				logger.Error(err, "Failed to get taint specs for node", "node", klog.KRef("", string(attachedVolume.NodeName)))
    			}
    
    			// Check whether volume is still mounted. Skip detach if it is still mounted unless we have
    			// decided to force detach or the node has `node.kubernetes.io/out-of-service` taint.
    			if attachedVolume.MountedByNode && !forceDetach && !hasOutOfServiceTaint {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. pkg/controller/controller_utils.go

    		if err != nil {
    			return err
    		}
    
    		var newNode *v1.Node
    		oldNodeCopy := oldNode
    		updated := false
    		for _, taint := range taints {
    			curNewNode, ok, err := taintutils.AddOrUpdateTaint(oldNodeCopy, taint)
    			if err != nil {
    				return fmt.Errorf("failed to update taint of node")
    			}
    			updated = updated || ok
    			newNode = curNewNode
    			oldNodeCopy = curNewNode
    		}
    		if !updated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/predicate.go

    			reasons = append(reasons, &PredicateFailureError{r.Name, r.Reason})
    		}
    	}
    
    	// Check taint/toleration except for static pods
    	if !types.IsStaticPod(pod) {
    		_, isUntolerated := corev1.FindMatchingUntoleratedTaint(nodeInfo.Node().Spec.Taints, pod.Spec.Tolerations, func(t *v1.Taint) bool {
    			// Kubelet is only interested in the NoExecute taint.
    			return t.Effect == v1.TaintEffectNoExecute
    		})
    		if isUntolerated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top