Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for image1 (0.24 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. 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)
  4. pkg/apis/batch/validation/validation_test.go

    			RestartPolicy:  api.RestartPolicyOnFailure,
    			DNSPolicy:      api.DNSClusterFirst,
    			Containers:     []api.Container{{Name: "abc", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    			InitContainers: []api.Container{{Name: "def", Image: "image", ImagePullPolicy: "IfNotPresent", TerminationMessagePolicy: api.TerminationMessageReadFile}},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "image": {
              "description": "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images",
              "type": "string"
            },
            "imageID": {
              "description": "ImageID of the container's image.",
              "type": "string"
            },
            "lastState": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/grpc/runtime/pom.xml
    	quarkus/test-framework/junit5/pom.xml
    quarkus/extensions/container-image/container-image-jib/deployment/pom.xml
    	quarkus/extensions/container-image/container-image-jib/runtime/pom.xml
    	quarkus/extensions/container-image/deployment/pom.xml
    quarkus/extensions/kubernetes/minikube/runtime/pom.xml
    	quarkus/extensions/kubernetes-client/runtime-internal/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    manifests/charts/ztunnel/values.yaml defaults: # Hub to pull from. Image will be `Hub/Image:Tag-Variant` hub: gcr.io/istio-testing # Tag to pull from. Image will be `Hub/Image:Tag-Variant` tag: latest # Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version. variant: "" # 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. image: ztunnel # Labels to apply to all top level resources...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

          echo "${CUSTOM_INGRESS_YAML}" > "${dest_manifest}"
        else
          cp "${src_manifest}" "${dest_manifest}"
        fi
    
        # Override the glbc image if GCE_GLBC_IMAGE is specified.
        if [[ -n "${GCE_GLBC_IMAGE:-}" ]]; then
          sed -i "s|image:.*|image: ${GCE_GLBC_IMAGE}|" "${dest_manifest}"
        fi
      fi
    }
    
    # Setup working directory for kubelet.
    function setup-kubelet-dir {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// setup imageManager
    	imageManager, err := images.NewImageGCManager(klet.containerRuntime, klet.StatsProvider, kubeDeps.Recorder, nodeRef, imageGCPolicy, kubeDeps.TracerProvider)
    	if err != nil {
    		return nil, fmt.Errorf("failed to initialize image manager: %v", err)
    	}
    	klet.imageManager = imageManager
    
    	if kubeDeps.TLSOptions != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. 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)
Back to top