Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sandboxIDs (0.27 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	// 3. should create all app containers because init container finished.
    	// Stop init container instance 0.
    	sandboxIDs, err := m.getSandboxIDByPodUID(ctx, pod.UID, nil)
    	require.NoError(t, err)
    	sandboxID := sandboxIDs[0]
    	initID0, err := fakeRuntime.GetContainerID(sandboxID, initContainers[0].Name, 0)
    	require.NoError(t, err)
    	fakeRuntime.StopContainer(ctx, initID0, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    func (m *kubeGenericRuntimeManager) GetPods(ctx context.Context, all bool) ([]*kubecontainer.Pod, error) {
    	pods := make(map[kubetypes.UID]*kubecontainer.Pod)
    	sandboxes, err := m.getKubeletSandboxes(ctx, all)
    	if err != nil {
    		return nil, err
    	}
    	for i := range sandboxes {
    		s := sandboxes[i]
    		if s.Metadata == nil {
    			klog.V(4).InfoS("Sandbox does not have metadata", "sandbox", s)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top