Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for signalM (0.15 sec)

  1. pkg/kubelet/kubelet_test.go

    	checkPodStatus(t, kl, missingPod, v1.PodPending)
    	checkPodStatus(t, kl, failedPod, v1.PodFailed)
    }
    
    // TODO(filipg): This test should be removed once StatusSyncer can do garbage collection without external signal.
    func TestPurgingObsoleteStatusMapEntries(t *testing.T) {
    	ctx := context.Background()
    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    	defer testKubelet.Cleanup()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    				syncErr = fmt.Errorf("error killing pod: %w", err)
    				utilruntime.HandleError(syncErr)
    			}
    		} else {
    			// There was no error killing the pod, but the pod cannot be run.
    			// Return an error to signal that the sync loop should back off.
    			syncErr = fmt.Errorf("pod cannot be run: %v", runnable.Message)
    		}
    		return false, syncErr
    	}
    
    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