Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 379 for imageID (0.13 sec)

  1. pkg/api/testing/deep_copy_test.go

    					Running: &api.ContainerStateRunning{
    						StartedAt: parseTimeOrDie("2015-04-22T11:49:32Z"),
    					},
    				},
    				Ready:        true,
    				RestartCount: 0,
    				Image:        "registry.k8s.io/etcd:2.0.9",
    				ImageID:      "docker://b6b9a86dc06aa1361357ca1b105feba961f6a4145adca6c54e142c0be0fe87b0",
    				ContainerID:  "docker://3cbbf818f1addfc252957b4504f56ef2907a313fe6afc47fc75373674255d46d",
    			},
    		},
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

        reason: reasonValue
        status: statusValue
        type: typeValue
      containerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                "finishedAt": "2006-01-01T01:01:01Z",
                "containerID": "containerIDValue"
              }
            },
            "ready": true,
            "restartCount": 5,
            "image": "imageValue",
            "imageID": "imageIDValue",
            "containerID": "containerIDValue",
            "started": true,
            "allocatedResources": {
              "allocatedResourcesKey": "0"
            },
            "resources": {
    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.29.0/core.v1.Pod.yaml

        reason: reasonValue
        status: statusValue
        type: typeValue
      containerStatuses:
      - allocatedResources:
          allocatedResourcesKey: "0"
        containerID: containerIDValue
        image: imageValue
        imageID: imageIDValue
        lastState:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	err := m.imageService.RemoveImage(ctx, &runtimeapi.ImageSpec{Image: image.Image})
    	if err != nil {
    		klog.ErrorS(err, "Failed to remove image", "image", image.Image)
    		return err
    	}
    
    	return nil
    }
    
    // ImageStats returns the statistics of the image.
    // Notice that current logic doesn't really work for images which share layers (e.g. docker image),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pkg/kubelet/container/helpers.go

    			continue
    		}
    		container := &Container{
    			ID:                  containerStatus.ID,
    			Name:                containerStatus.Name,
    			Image:               containerStatus.Image,
    			ImageID:             containerStatus.ImageID,
    			ImageRef:            containerStatus.ImageRef,
    			ImageRuntimeHandler: containerStatus.ImageRuntimeHandler,
    			Hash:                containerStatus.Hash,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		ID: kubecontainer.ContainerID{
    			Type: runtimeName,
    			ID:   status.Id,
    		},
    		Name:                labeledInfo.ContainerName,
    		Image:               status.Image.Image,
    		ImageID:             imageID,
    		ImageRef:            status.ImageRef,
    		ImageRuntimeHandler: status.Image.RuntimeHandler,
    		Hash:                annotatedInfo.Hash,
    		RestartCount:        annotatedInfo.RestartCount,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    				{
    					Name:    testContainerName,
    					Image:   "img",
    					ImageID: "img1234",
    					State:   v1.ContainerState{Running: &v1.ContainerStateRunning{}},
    				},
    			},
    			Expected: []v1.ContainerStatus{
    				{
    					Name:               testContainerName,
    					ContainerID:        testContainerID.String(),
    					Image:              "img",
    					ImageID:            "img1234",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    	assert.Error(t, err)
    
    	imageID, _ := imageService.PullImage(ctx, &runtimeapi.ImageSpec{Image: "busybox"}, nil, nil)
    	resp, _ := imageService.ImageStatus(ctx, &runtimeapi.ImageSpec{Image: imageID}, false)
    
    	resp.Image.Uid = nil
    	resp.Image.Username = "test"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  10. pkg/kubelet/container/runtime.go

    	}
    	return runningContainerStatuses
    }
    
    // Image contains basic information about a container image.
    type Image struct {
    	// ID of the image.
    	ID string
    	// Other names by which this image is known.
    	RepoTags []string
    	// Digests by which this image is known.
    	RepoDigests []string
    	// The size of the image in bytes.
    	Size int64
    	// ImageSpec for the image which include annotations.
    	Spec ImageSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top