Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pdkill (0.24 sec)

  1. pkg/kubelet/kubelet.go

    		firstSync := true
    		for _, containerStatus := range apiPodStatus.ContainerStatuses {
    			if containerStatus.State.Running != nil {
    				firstSync = false
    				break
    			}
    		}
    		// Don't kill containers in pod if pod's cgroups already
    		// exists or the pod is running for the first time
    		podKilled := false
    		if !pcm.Exists(pod) && !firstSync {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    	fakeRuntime.PodList = []*containertest.FakePod{
    		{Pod: pod},
    	}
    	kubelet := testKubelet.kubelet
    
    	kubelet.HandlePodCleanups(ctx)
    
    	// assert that unwanted pods were queued to kill
    	if actual, expected := kubelet.podWorkers.(*fakePodWorkers).triggeredDeletion, []types.UID{"12345678"}; !reflect.DeepEqual(actual, expected) {
    		t.Fatalf("expected %v to be deleted, got %v", expected, actual)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		return resource.ExtractContainerResourceValue(fs, container)
    	}
    	return resource.ExtractResourceValueByContainerName(fs, pod, containerName)
    }
    
    // killPod instructs the container runtime to kill the pod. This method requires that
    // the pod status contains the result of the last syncPod, otherwise it may fail to
    // terminate newly created containers and sandboxes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top