Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for CONTAINERID (0.19 sec)

  1. pkg/apis/core/validation/validation_test.go

    				InitContainerStatuses: []core.ContainerStatus{{
    					ContainerID: "docker://numbers",
    					Image:       "alpine",
    					ImageID:     "docker-pullable://nginx@sha256:d0gf00d",
    					Name:        "init",
    					Ready:       true,
    					State: core.ContainerState{
    						Terminated: &core.ContainerStateTerminated{
    							ContainerID: "docker://numbers",
    							Reason:      "Completed",
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/manager.go

    		klog.V(4).InfoS("container not present in the initial running set", "podUID", podUID, "containerName", cntName, "containerID", cntID)
    		return false
    	}
    
    	// Once we make it here we know we have a running container.
    	klog.V(4).InfoS("container found in the initial set, assumed running", "podUID", podUID, "containerName", cntName, "containerID", cntID)
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  3. cni/pkg/plugin/plugin_test.go

    	return testServer.URL, func() bool {
    		testServer.Close()
    		return cniAddServerCalled
    	}
    }
    
    func buildCmdArgs(stdinData, podName, podNamespace string) *skel.CmdArgs {
    	return &skel.CmdArgs{
    		ContainerID: "testContainerID",
    		Netns:       testSandboxDirectory,
    		IfName:      "eth0",
    		Args:        fmt.Sprintf("K8S_POD_NAMESPACE=%s;K8S_POD_NAME=%s", podNamespace, podName),
    		Path:        "/tmp",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	if err != nil {
    		t.Fatalf("error creating test RuntimeManager: %v", err)
    	}
    
    	for _, tc := range []struct {
    		name   string
    		pod    *v1.Pod
    		target *kubecontainer.ContainerID
    		want   *runtimeapi.NamespaceOption
    	}{
    		{
    			"Default namespaces",
    			&v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Name: "test"},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers_test.go

    		containerStatus := &pod.Status.ContainerStatuses[i]
    		state := &containerStatus.State
    		if state.Running != nil {
    			randTime(&state.Running.StartedAt.Time, r)
    		}
    		containerStatus.ContainerID = fmt.Sprintf("docker://%x%x%x%x", r.Int63(), r.Int63(), r.Int63(), r.Int63())
    	}
    	for i := range pod.ManagedFields {
    		randTime(&pod.ManagedFields[i].Time.Time, r)
    	}
    
    	randIP(&pod.Status.HostIP, r)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    				klog.V(4).InfoS("SyncLoop (PLEG): pod does not exist, ignore irrelevant event", "event", e)
    			}
    		}
    
    		if e.Type == pleg.ContainerDied {
    			if containerID, ok := e.Data.(string); ok {
    				kl.cleanUpContainersInPod(e.ID, containerID)
    			}
    		}
    	case <-syncCh:
    		// Sync pods waiting for sync
    		podsToSync := kl.getPodsToSync()
    		if len(podsToSync) == 0 {
    			break
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    	out.ExitCode = in.ExitCode
    	out.Signal = in.Signal
    	out.Reason = in.Reason
    	out.Message = in.Message
    	out.StartedAt = in.StartedAt
    	out.FinishedAt = in.FinishedAt
    	out.ContainerID = in.ContainerID
    	return nil
    }
    
    // Convert_v1_ContainerStateTerminated_To_core_ContainerStateTerminated is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	ImageID string `json:"imageID" protobuf:"bytes,7,opt,name=imageID"`
    	// ContainerID is the ID of the container in the format '<type>://<container_id>'.
    	// Where type is a container runtime identifier, returned from Version call of CRI API
    	// (for example "containerd").
    	// +optional
    	ContainerID string `json:"containerID,omitempty" protobuf:"bytes,8,opt,name=containerID"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// resolved by the runtime.
    	ImageID string
    	// ContainerID is the ID of the container in the format '<type>://<container_id>'.
    	// Where type is a container runtime identifier, returned from Version call of CRI API
    	// (for example "containerd").
    	// +optional
    	ContainerID string
    	// Started indicates whether the container has finished its postStart lifecycle hook
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"imageID":            "ImageID is the image ID of the container's image. The image ID may not match the image ID of the image used in the PodSpec, as it may have been resolved by the runtime.",
    	"containerID":        "ContainerID is the ID of the container in the format '<type>://<container_id>'. Where type is a container runtime identifier, returned from Version call of CRI API (for example \"containerd\").",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top