Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ImageName (0.13 sec)

  1. pkg/test/fakes/imageregistry/main.go

    		return path
    	}
    
    	prefix := matches[regexForManifest.SubexpIndex("Prefix")]
    	imageName := matches[regexForManifest.SubexpIndex("ImageName")]
    	tag := matches[regexForManifest.SubexpIndex("Tag")]
    	key := imageName + ":" + tag
    
    	log.Infof("key: %v", key)
    
    	if converted, found := h.tagMap[imageName+":"+tag]; found {
    		return prefix + "/" + imageName + "/manifests/" + converted
    	}
    	return path
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/wasm_test.go

    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	imageName      = "istio-testing/wasm/header-injector"
    	injectedHeader = "x-resp-injection"
    	wasmConfigFile = "testdata/wasm-filter.yaml"
    )
    
    type wasmTestConfigs struct {
    	desc         string
    	name         string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/flexvolume_node_setup.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    MOUNTER_IMAGE=${1:-}
    MOUNTER_PATH=/home/kubernetes/flexvolume_mounter
    VOLUME_PLUGIN_DIR=/home/kubernetes/flexvolume
    
    usage() {
      echo "usage: $0 imagename[:tag]"
      echo "    imagename  Name of a Container Registry image. By default the latest image is used."
      echo "    :tag       Container Registry image tag."
      exit 1
    }
    
    if [ -z "${MOUNTER_IMAGE}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
Back to top