Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fastNodeStatusUpdate (0.16 sec)

  1. pkg/kubelet/kubelet_node_status.go

    				node.ObjectMeta.Labels[v1.LabelTopologyRegion] = zone.Region
    			}
    		}
    	}
    
    	kl.setNodeStatus(ctx, node)
    
    	return node, nil
    }
    
    // fastNodeStatusUpdate is a "lightweight" version of syncNodeStatus which doesn't hit the
    // apiserver except for the final run, to be called by fastStatusUpdateOnce in each loop.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	wait.Until(func() {
    		// fastNodeStatusUpdate returns true when it succeeds or when the grace period has expired
    		// (status was not updated within nodeReadyGracePeriod and the second argument below gets true),
    		// then we close the channel and abort the loop.
    		if kl.fastNodeStatusUpdate(ctx, kl.clock.Since(start) >= nodeReadyGracePeriod) {
    			close(stopCh)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top