Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 351 for image1 (0.1 sec)

  1. pkg/printers/internalversion/printers_test.go

    							{
    								Name:  "fake-container1",
    								Image: "fake-image1",
    							},
    							{
    								Name:  "fake-container2",
    								Image: "fake-image2",
    							},
    						},
    					},
    				},
    			},
    
    			options: printers.GenerateOptions{},
    			// Columns: Name, Containers, Images, Pod Labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. tools/build-base-images.sh

    TAG="${TAG:?specify a tag}"
    defaultTargets="$(< "${ROOT}/tools/docker.yaml" toJson | toJson | jq '[.images[] | select(.base) | .name] | join(",")' -r)"
    DOCKER_TARGETS="${DOCKER_TARGETS:-${defaultTargets}}"
    
    # For multi architecture building:
    # See https://medium.com/@artur.klauser/building-multi-architecture-docker-images-with-buildx-27d80f7e2408 for more info
    # * docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_gc_manager.go

    	err = im.runtime.RemoveImage(ctx, container.ImageSpec{Image: image.id, RuntimeHandler: image.runtimeHandlerUsedToPullImage})
    	if err != nil {
    		return err
    	}
    
    	imageKey := image.id
    	if isRuntimeClassInImageCriAPIEnabled {
    		imageKey = getImageTuple(image.id, image.runtimeHandlerUsedToPullImage)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. build/pause/CHANGELOG.md

    # 3.9
    
    * Unsupported Windows Semi-Annual Channel container images removed (OS Versions removed: 20H2). ([#112924](https://github.com/kubernetes/kubernetes/pull/112924), [@marosset](https://github.com/marosset))
    
    # 3.8
    
    * Updating base image for Windows container images from nanoserver to `mcr.microsoft.com/oss/kubernetes/windows-pause-image-base` which gets built on a Windows machine.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. cluster/images/etcd/Makefile

    all-build: $(addprefix sub-build-,$(ALL_OS_ARCH))
    
    sub-push-image-%:
    	$(MAKE) OUTPUT_TYPE=registry OS=$(call word-hyphen,$*,1) ARCH=$(call word-hyphen,$*,2) OSVERSION=$(call word-hyphen,$*,3) REGISTRY=$(PUSH_REGISTRY) push
    
    all-push-images: $(addprefix sub-push-image-,$(ALL_OS_ARCH))
    
    # NOTE(claudiub): A non-default builder instance is needed in order to build Windows images.
    all-push: all-push-images push-manifest
    
    push-manifest:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. build/pause/Makefile

    push-manifest:
    	docker manifest create --amend $(IMAGE):$(TAG) $(shell echo $(ALL_OS_ARCH) | sed -e "s~[^ ]*~$(IMAGE):$(TAG)\-&~g")
    	set -x; for arch in $(ALL_ARCH.linux); do docker manifest annotate --os linux --arch $${arch} ${IMAGE}:${TAG} ${IMAGE}:${TAG}-linux-$${arch}; done
    	# For Windows images, we also need to include the "os.version" in the manifest list, so the Windows node can pull the proper image it needs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. build/release-images.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Build Kubernetes release images. This will build the server target binaries,
    # and create wrap them in Docker images, see `make release` for full releases
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/build/common.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_manager_test.go

    		images, _ := fakeRuntime.ListImages(ctx)
    		assert.Equal(t, 1, len(images), "ListImages() count")
    
    		image := images[0]
    		assert.Equal(t, "missing_image:latest", image.ID, "Image ID")
    		assert.Equal(t, "", image.Spec.RuntimeHandler, "image.Spec.RuntimeHandler not empty", "ImageID", image.ID)
    
    		expectedAnnotations := []Annotation{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. build/root/Makefile

    #           information.
    endef
    .PHONY: release-images
    ifeq ($(PRINT_HELP),y)
    release-images: KUBE_BUILD_CONFORMANCE = y
    release-images:
    	echo "$$RELEASE_IMAGES_HELP_INFO"
    else
    release-images:
    	build/release-images.sh
    endif
    
    define RELEASE_SKIP_TESTS_HELP_INFO
    # Build a release, but skip tests
    #
    # Args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top