Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for CONTAINERID (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		"containerName", containerName, "containerID", containerID.String(), "gracePeriod", gracePeriod)
    
    	err := m.runtimeService.StopContainer(ctx, containerID.ID, gracePeriod)
    	if err != nil && !crierror.IsNotFound(err) {
    		klog.ErrorS(err, "Container termination failed with gracePeriod", "pod", klog.KObj(pod), "podUID", pod.UID,
    			"containerName", containerName, "containerID", containerID.String(), "gracePeriod", gracePeriod)
    		return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	podSandboxID := apitest.BuildSandboxName(sandboxConfig.Metadata)
    	containerID := apitest.BuildContainerName(containerConfig.Metadata, podSandboxID)
    	imageRef := containerConfig.Image.Image
    	return &apitest.FakeContainer{
    		ContainerStatus: runtimeapi.ContainerStatus{
    			Id:          containerID,
    			Metadata:    containerConfig.Metadata,
    			Image:       containerConfig.Image,
    			ImageRef:    imageRef,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.json

                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    }
    
    func (f *fakeRuntime) Exec(_ context.Context, containerID string, cmd []string, stdin io.Reader, stdout, stderr io.WriteCloser, tty bool, resize <-chan remotecommand.TerminalSize) error {
    	return f.execFunc(containerID, cmd, stdin, stdout, stderr, tty, resize)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. pkg/kubelet/status/status_manager_test.go

    }
    
    func TestSetContainerReadiness(t *testing.T) {
    	cID1 := kubecontainer.ContainerID{Type: "test", ID: "1"}
    	cID2 := kubecontainer.ContainerID{Type: "test", ID: "2"}
    	containerStatuses := []v1.ContainerStatus{
    		{
    			Name:        "c1",
    			ContainerID: cID1.String(),
    			Ready:       false,
    		}, {
    			Name:        "c2",
    			ContainerID: cID2.String(),
    			Ready:       false,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		}
    	} else {
    		// Step 3: kill any running containers in this pod which are not to keep.
    		for containerID, containerInfo := range podContainerChanges.ContainersToKill {
    			klog.V(3).InfoS("Killing unwanted container for pod", "containerName", containerInfo.name, "containerID", containerID, "pod", klog.KObj(pod))
    			killContainerResult := kubecontainer.NewSyncResult(kubecontainer.KillContainer, containerInfo.name)
    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