Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doNoExecuteTaintingPass (0.25 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		t.Errorf("unexpected error: %v", err)
    	}
    	if err := nodeController.monitorNodeHealth(ctx); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	nodeController.doNoExecuteTaintingPass(ctx)
    	node0, err := fakeNodeHandler.Get(ctx, "node0", metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Can't get current node0...")
    		return
    	}
    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/nodelifecycle/node_lifecycle_controller.go

    	// taints and we normally don't rate limit evictions caused by taints, we need to rate limit adding taints.
    	go wait.UntilWithContext(ctx, nc.doNoExecuteTaintingPass, scheduler.NodeEvictionPeriod)
    
    	// Incorporate the results of node health signal pushed from kubelet to master.
    	go wait.UntilWithContext(ctx, func(ctx context.Context) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top