Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Requires (0.14 sec)

  1. 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)
  2. pkg/kubelet/kubelet.go

    		kl.secretManager.UnregisterPod(pod)
    	}
    	if kl.configMapManager != nil {
    		kl.configMapManager.UnregisterPod(pod)
    	}
    
    	// Note: we leave pod containers to be reclaimed in the background since dockershim requires the
    	// container for retrieving logs and we want to make sure logs are available until the pod is
    	// physically deleted.
    
    	// remove any cgroups in the hierarchy for pods that are no longer running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    				),
    				test.containerName,
    				options,
    			)
    			require.Equal(t, test.expectedStatus, status)
    
    			if status != nil {
    				return
    			}
    
    			require.True(
    				t,
    				strings.HasPrefix(
    					options.Location,
    					test.expectedLocation,
    				),
    			)
    			require.Equal(
    				t,
    				options.ContainerId,
    				containerID.ID,
    			)
    
    		})
    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