Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 339 for image1 (0.1 sec)

  1. pkg/kubelet/nodestatus/setters_test.go

    }
    
    // makeImageList randomly generates a list of images with the given count
    func makeImageList(numImages, numTags, minSize, maxSize int32) []kubecontainer.Image {
    	images := make([]kubecontainer.Image, numImages)
    	for i := range images {
    		image := &images[i]
    		image.ID = string(uuid.NewUUID())
    		image.RepoTags = makeImageTags(numTags)
    		image.Size = rand.Int63nRange(int64(minSize), int64(maxSize+1))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/kubelet/nodestatus/setters.go

    		return nil
    	}
    }
    
    // Images returns a Setter that updates the images on the node.
    // imageListFunc is expected to return a list of images sorted in descending order by image size.
    // nodeStatusMaxImages is ignored if set to -1.
    func Images(nodeStatusMaxImages int32,
    	imageListFunc func() ([]kubecontainer.Image, error), // typically Kubelet.imageManager.GetImageList
    ) Setter {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Hub to pull the container image from. Image will be `Hub/Image:Tag-Variant`.
      string hub = 2;
    
      // The container image tag to pull. Image will be `Hub/Image:Tag-Variant`.
      google.protobuf.Value tag = 3;
    
      // Image name to pull from. Image will be `Hub/Image:Tag-Variant`.
      // If Image contains a "/", it will replace the entire `image` in the pod.
      string image = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.28.md

    [registry.k8s.io/kube-apiserver:v1.28.7](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-apiserver) | [amd64](ht...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  5. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    	}
    	imageList := []string{}
    	for image, pinned := range imagesPinned {
    		fakeImageService.SetFakeImagePinned(image, pinned)
    		imageList = append(imageList, image)
    	}
    	fakeImageService.SetFakeImages(imageList)
    
    	actualImages, err := fakeManager.ListImages(ctx)
    	assert.NoError(t, err)
    	for _, image := range actualImages {
    		assert.Equal(t, imagesPinned[image.ID], image.Pinned)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. docs/pt/docs/deployment/docker.md

    !!! warning
        Existe uma grande chance de que você **não** precise dessa imagem base ou de qualquer outra semelhante, e seria melhor construir a imagem do zero, como [descrito acima em: Construa uma Imagem Docker para o FastAPI](#construindo-uma-imagem-docker-para-fastapi).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/config.go

    	return cmd
    }
    
    // PullControlPlaneImages pulls all images that the ImagesPull knows about
    func PullControlPlaneImages(runtime utilruntime.ContainerRuntime, cfg *kubeadmapi.ClusterConfiguration) error {
    	images := images.GetControlPlaneImages(cfg)
    	for _, image := range images {
    		if err := runtime.PullImage(image); err != nil {
    			return errors.Wrapf(err, "failed to pull image %q", image)
    		}
    		fmt.Printf("[config/images] Pulled %s\n", image)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.31.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 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. 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)
Back to top