Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 362 for Usages (0.28 sec)

  1. CHANGELOG/CHANGELOG-1.30.md

    ogle.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance) | [amd64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-amd64), [arm64](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-arm64), [ppc64le](https://console.cloud.google.com/artifacts/docker/k8s-artifacts-prod/southamerica-east1/images/conformance-ppc64le), [s390x](https://console.cloud.google.com/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/output/zz_generated.deepcopy.go

    func (in *Images) DeepCopyInto(out *Images) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.Images != nil {
    		in, out := &in.Images, &out.Images
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Images.
    func (in *Images) DeepCopy() *Images {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/api/core/v1/types.go

    // New uses of this type are discouraged because of difficulty describing its usage when embedded in APIs.
    //  1. Ignored fields.  It includes many fields which are not generally honored.  For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage.
    //  2. Invalid usage help.  It is impossible to add specific help for individual usage.  In most embedded usages, there are particular
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_gc_manager_test.go

    	oldStartTime := fakeClock.Now()
    	images, err = manager.freeOldImages(ctx, images, oldStartTime, oldStartTime)
    	require.NoError(t, err)
    	assert.Len(images, 1)
    	assert.Len(fakeRuntime.ImageList, 2)
    
    	// move clock by a millisecond past maxAge duration, then 1 image will be garbage collected
    	fakeClock.Step(policy.MaxAge + 1)
    	images, err = manager.freeOldImages(ctx, images, fakeClock.Now(), oldStartTime)
    	require.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/runtime/runtime.go

    }
    
    func pullImagesInParallelImpl(images []string, ifNotPresent bool,
    	imageExistsFunc func(string) bool, pullImageFunc func(string) error) []error {
    
    	var errs []error
    	errChan := make(chan error, len(images))
    
    	klog.V(1).Info("pulling all images in parallel")
    	for _, img := range images {
    		image := img
    		go func() {
    			if ifNotPresent {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. tools/docker.yaml

      targets:
      # Build a file with make, then include as a static file
      - ${TARGET_OUT_LINUX}/helloworld
    
    images:
    
    # Base images
    - name: base
      dockerfile: docker/Dockerfile.base
      base: true
    
    - name: distroless
      dockerfile: docker/Dockerfile.distroless
      base: true
    
    # Production images
    - name: proxyv2
      dockerfile: pilot/docker/Dockerfile.proxyv2
      files:
      - tools/packaging/common/envoy_bootstrap.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		fmt.Println("[preflight] Would pull the required images (like 'kubeadm config images pull')")
    		return nil
    	}
    
    	fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    	fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    	fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. releasenotes/notes/apko-distroless.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Updated** the [`distroless`](/docs/ops/configuration/security/harden-docker-images/) images to be based on [Wolfi](https://wolfi.dev).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 267 bytes
    - Viewed (0)
  10. cluster/images/etcd/Makefile

    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)
Back to top