Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 771 for image2 (0.12 sec)

  1. plugin/pkg/admission/alwayspullimages/admission_test.go

    				{Name: "init3", Image: "image", ImagePullPolicy: api.PullIfNotPresent},
    				{Name: "init4", Image: "image", ImagePullPolicy: api.PullAlways},
    			},
    			Containers: []api.Container{
    				{Name: "ctr1", Image: "image"},
    				{Name: "ctr2", Image: "image", ImagePullPolicy: api.PullNever},
    				{Name: "ctr3", Image: "image", ImagePullPolicy: api.PullIfNotPresent},
    				{Name: "ctr4", Image: "image", ImagePullPolicy: api.PullAlways},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/images/images.go

    	}
    
    	// pause is not available on the ci image repository so use the default image repository.
    	images = append(images, GetPauseImage(cfg))
    
    	// if etcd is not external then add the image as it will be required
    	if cfg.Etcd.Local != nil {
    		images = append(images, GetEtcdImage(cfg))
    	}
    
    	return images
    }
    
    // GetPauseImage returns the image for the "pause" container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. scripts/playwright/separate_openapi_schemas/image02.py

        page.get_by_role("button", name="Try it out").click()
        page.get_by_role("button", name="Execute").click()
        page.screenshot(
            path="docs/en/docs/img/tutorial/separate-openapi-schemas/image02.png"
        )
    
        # ---------------------
        context.close()
        browser.close()
    
    
    process = subprocess.Popen(
        ["uvicorn", "docs_src.separate_openapi_schemas.tutorial001:app"]
    )
    try:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 873 bytes
    - Viewed (0)
  4. hack/verify-test-images.sh

    }
    
    
    # Find mentions of latest gcr.io images in test/e2e/*.go
    find_e2e_test_latest_gcr_images() {
        grep -o -E -e 'gcr.io/.*:latest' test/e2e/*.go | cut -d ":" -f 1 | LC_ALL=C sort -u
    }
    
    if find_e2e_test_latest_gcr_images; then
      echo "!!! Found :latest gcr.io images in the above files"
      result=1
    fi
    
    if find_e2e_test_untagged_gcr_images; then
      echo "!!! Found untagged gcr.io images in the above files"
      result=1
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 21 10:10:46 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  5. tools/build-base-images.sh

    TAG="${TAG:?specify a tag}"
    defaultTargets="$(< "${ROOT}/tools/docker.yaml" toJson | toJson | jq '[.images[] | select(.base) | .name] | join(",")' -r)"
    DOCKER_TARGETS="${DOCKER_TARGETS:-${defaultTargets}}"
    
    # For multi architecture building:
    # See https://medium.com/@artur.klauser/building-multi-architecture-docker-images-with-buildx-27d80f7e2408 for more info
    # * docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/image/image.go

    	tagMatcher = regexp.MustCompile(`^(?U:.*)(?::([[:word:]][[:word:].-]*))?(?:@sha256:[a-fA-F\d]{64})?$`)
    )
    
    // TagFromImage extracts a tag from image. An empty string is returned if no tag is discovered.
    func TagFromImage(image string) string {
    	matches := tagMatcher.FindStringSubmatch(image)
    	if len(matches) >= 2 {
    		return matches[1]
    	}
    	return ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 19 21:21:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/image-auto.yaml

        spec:
          containers:
            - name: istio-proxy
              image: auto
    ---
    # No image auto, should not produce error!
    apiVersion: v1
    kind: Pod
    metadata:
      name: istiod-canary-1234567890-12345
      namespace: istio-system
      labels:
        app: istiod
        istio: pilot
        sidecar.istio.io/inject: "true"
    spec:
      containers:
        - image: ubuntu
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. tools/skip-image.sh

    # limitations under the License.
    
    set -eu
    
    # This is a dedicated script to allow reference from script and makefile
    
    # Determine if we should skip an image
    # $1 = docker target
    # $2 = variant
    # We will filter out test image distroless variant; they do not need to support distroless
    if [[ $2 == "distroless" ]]; then
      if [[ $1 =~ docker.app ]]; then
        exit 0
      fi
    fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 02 18:51:04 UTC 2020
    - 933 bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/injection-image-distroless.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      name: details-v1-pod-old
      namespace: enabled-namespace
    spec:
      containers:
      - image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
        name: details
      - image: docker.io/istio/proxyv2:1.3.0
        name: istio-proxy
    ---
    # details-v1-pod-new is up-to-date and should not get a warning.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. releasenotes/notes/image-auto-analyzer.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 26 05:40:12 UTC 2021
    - 185 bytes
    - Viewed (0)
Back to top