Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for image2 (0.12 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. pkg/apis/apps/validation/validation_test.go

    		DNSPolicy:     api.DNSClusterFirst,
    		Containers:    []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    	}
    	validPodSpecDef := api.PodSpec{
    		RestartPolicy: api.RestartPolicyAlways,
    		DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  3. docs/en/docs/img/deployment/concepts/image01.png

    image01.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 01 20:44:19 UTC 2021
    - 121.9K bytes
    - Viewed (0)
  4. docs/en/docs/img/tutorial/path-params/image03.png

    image03.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Nov 05 22:30:09 UTC 2020
    - 115.8K bytes
    - Viewed (0)
  5. docs/en/docs/img/deployment/deta/image06.png

    image06.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 08 12:32:02 UTC 2023
    - 102.8K bytes
    - Viewed (0)
  6. docs/en/docs/img/tutorial/debugging/image01.png

    image01.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 169.5K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_control_test.go

    				for i := range pods {
    					if i < 2 && pods[i].Spec.Containers[0].Image != originalImage {
    						return fmt.Errorf("want pod %s image %s found %s", pods[i].Name, originalImage, pods[i].Spec.Containers[0].Image)
    					}
    					if i >= 2 && pods[i].Spec.Containers[0].Image != "foo" {
    						return fmt.Errorf("want pod %s image foo found %s", pods[i].Name, pods[i].Spec.Containers[0].Image)
    					}
    				}
    				return nil
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  8. pkg/api/pod/util_test.go

    							Name:  "c1",
    							Image: "image",
    						},
    					},
    				},
    				Status: api.PodStatus{
    					ContainerStatuses: []api.ContainerStatus{
    						{
    							Name:  "c1",
    							Image: "image",
    						},
    					},
    				},
    			},
    			expectedPod: &api.Pod{
    				Spec: api.PodSpec{
    					Containers: []api.Container{
    						{
    							Name:  "c1",
    							Image: "image",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    	// TODO(harry) any global place for these two?
    	// Reasonable size range of all container images. 90%ile of images on dockerhub drops into this range.
    	minImgSize int64 = 23 * 1024 * 1024
    	maxImgSize int64 = 1000 * 1024 * 1024
    )
    
    // fakeImageGCManager is a fake image gc manager for testing. It will return image
    // list from fake runtime directly instead of caching it.
    type fakeImageGCManager struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

        # If the master image is not set, we use the latest image based on image
        # family.
        kube_master_image="${KUBE_GCE_MASTER_IMAGE:-${GCI_VERSION}}"
        if [[ -z "${kube_master_image}" ]]; then
          kube_master_image=$(gcloud compute images list --project="${MASTER_IMAGE_PROJECT}" --no-standard-images --filter="family:${MASTER_IMAGE_FAMILY}" --format 'value(name)')
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top