Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkNewCertificateAndRotate (0.37 sec)

  1. pkg/kubelet/certificate/transport.go

    		d.CloseAll()
    	}
    
    	// start long-term check
    	go wait.Until(checkNewCertificateAndRotate, period, stopCh)
    
    	if !hasCert.Load() {
    		// start a faster check until we get the initial certificate
    		go wait.PollUntil(time.Second, func() (bool, error) {
    			checkNewCertificateAndRotate()
    			return hasCert.Load(), nil
    		}, stopCh)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 08 13:57:45 UTC 2022
    - 6.5K bytes
    - Viewed (0)
Back to top