Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/kubelet/kubelet_pods.go

    		}
    		status := convertContainerStatus(cStatus, oldStatusPtr)
    		if utilfeature.DefaultFeatureGate.Enabled(features.InPlacePodVerticalScaling) {
    			if status.State.Running != nil {
    				status.Resources = convertContainerStatusResources(cName, status, cStatus, oldStatuses)
    			}
    		}
    		if utilfeature.DefaultFeatureGate.Enabled(features.SupplementalGroupsPolicy) {
    			status.User = convertContainerStatusUser(cStatus)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    func checkPodStatus(t *testing.T, kl *Kubelet, pod *v1.Pod, phase v1.PodPhase) {
    	t.Helper()
    	status, found := kl.statusManager.GetPodStatus(pod.UID)
    	require.True(t, found, "Status of pod %q is not found in the status map", pod.UID)
    	require.Equal(t, phase, status.Phase)
    }
    
    // Tests that we handle port conflicts correctly by setting the failed status in status map.
    func TestHandlePortConflicts(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top