Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 387 for Usages (0.14 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    	imageRef, err := fakeManager.PullImage(ctx, kubecontainer.ImageSpec{Image: "busybox"}, nil, nil)
    	assert.NoError(t, err)
    	assert.Equal(t, "busybox", imageRef)
    
    	images, err := fakeManager.ListImages(ctx)
    	assert.NoError(t, err)
    	assert.Equal(t, 1, len(images))
    	assert.Equal(t, images[0].RepoTags, []string{"busybox"})
    }
    
    func TestPullImageWithError(t *testing.T) {
    	ctx := context.Background()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/config.go

    }
    
    // Run runs the images command and writes the result to the io.Writer passed in
    func (i *ImagesList) Run(out io.Writer, printer output.Printer) error {
    	imgs := images.GetControlPlaneImages(&i.cfg.ClusterConfiguration)
    
    	if err := printer.PrintObj(&outputapiv1alpha3.Images{Images: imgs}, out); err != nil {
    		return errors.Wrap(err, "unable to print images")
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/config_test.go

    	var output bytes.Buffer
    	mockK8sVersion := dummyKubernetesVersionStr
    	images := newCmdConfigImagesList(&output, &mockK8sVersion)
    	if err := images.RunE(nil, nil); err != nil {
    		t.Fatalf("Error from running the images command: %v", err)
    	}
    	actual := strings.Split(output.String(), "\n")
    	if len(actual) != defaultNumberOfImages {
    		t.Fatalf("Expected %v but found %v images", defaultNumberOfImages, len(actual))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. build/dependencies.yaml

      # Base images
      - name: "registry.k8s.io/debian-base: dependents"
        version: bookworm-v1.0.3
        refPaths:
        - path: cluster/images/etcd/Makefile
          match: BASEIMAGE\?\=registry\.k8s\.io\/build-image\/debian-base:[a-zA-Z]+\-v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)
        - path: cluster/images/etcd/Makefile
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top