Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for storageErrorsFunc (0.17 sec)

  1. pkg/kubelet/nodestatus/setters.go

    	nowFunc func() time.Time, // typically Kubelet.clock.Now
    	runtimeErrorsFunc func() error, // typically Kubelet.runtimeState.runtimeErrors
    	networkErrorsFunc func() error, // typically Kubelet.runtimeState.networkErrors
    	storageErrorsFunc func() error, // typically Kubelet.runtimeState.storageErrors
    	cmStatusFunc func() cm.Status, // typically Kubelet.containerManager.Status
    	nodeShutdownManagerErrorsFunc func() error, // typically kubelet.shutdownManager.errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters_test.go

    			ctx := context.Background()
    			runtimeErrorsFunc := func() error {
    				return tc.runtimeErrors
    			}
    			networkErrorsFunc := func() error {
    				return tc.networkErrors
    			}
    			storageErrorsFunc := func() error {
    				return tc.storageErrors
    			}
    			cmStatusFunc := func() cm.Status {
    				return tc.cmStatus
    			}
    			nodeShutdownErrorsFunc := func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top