Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for imageID (0.48 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    			continue
    
    		}
    		if !isRuntimeClassInImageCriAPIEnabled {
    			images = append(images, evictionInfo{
    				id:          image,
    				imageRecord: *record,
    			})
    		} else {
    			imageID := getImageIDFromTuple(image)
    			// Ensure imageID is valid or else continue
    			if imageID == "" {
    				im.recorder.Eventf(im.nodeRef, v1.EventTypeWarning, "ImageID is not valid, skipping, ImageID: %v", imageID)
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/kubelet_pods.go

    		status := &v1.ContainerStatus{
    			Name:         cs.Name,
    			RestartCount: int32(cs.RestartCount),
    			Image:        cs.Image,
    			// Converting the digested image ref to the Kubernetes public
    			// ContainerStatus.ImageID is historically intentional and should
    			// not change.
    			ImageID:     cs.ImageRef,
    			ContainerID: cid,
    		}
    		if oldStatus != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. docs/ko/docs/tutorial/response-status-code.md

    `status_code` 매개변수는:
    
    * 응답에서 해당 상태 코드를 반환합니다.
    * 상태 코드를 OpenAPI 스키마(및 사용자 인터페이스)에 문서화 합니다.
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/response-status-code/image01.png">
    
    !!! note "참고"
        어떤 응답 코드들은 해당 응답에 본문이 없다는 것을 의미하기도 합니다 (다음 항목 참고).
    
        이에 따라 FastAPI는 응답 본문이 없음을 명시하는 OpenAPI를 생성합니다.
    
    ## HTTP 상태 코드에 대하여
    
    !!! note "참고"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:06:53 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/body-nested-models.md

    {!../../../docs_src/body_nested_models/tutorial007.py!}
    ```
    
    !!! info "정보"
        `Offer`가 선택사항 `Image` 리스트를 차례로 갖는 `Item` 리스트를 어떻게 가지고 있는지 주목하세요
    
    ## 순수 리스트의 본문
    
    예상되는 JSON 본문의 최상위 값이 JSON `array`(파이썬 `list`)면, Pydantic 모델에서와 마찬가지로 함수의 매개변수에서 타입을 선언할 수 있습니다:
    
    ```Python
    images: List[Image]
    ```
    
    이를 아래처럼:
    
    ```Python hl_lines="15"
    {!../../../docs_src/body_nested_models/tutorial008.py!}
    ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 12:49:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Format:      "",
    						},
    					},
    					"imageID": {
    						SchemaProps: spec.SchemaProps{
    							Description: "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.",
    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"containerID": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. api/openapi-spec/swagger.json

              "type": "string"
            },
            "image": {
              "description": "Image is the name of container image that the container is running. The container image may not match the image used in the PodSpec, as it may have been resolved by the runtime. More info: https://kubernetes.io/docs/concepts/containers/images.",
              "type": "string"
            },
            "imageID": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top