Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for HUB (0.09 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    					Listeners: []k8s.Listener{{
    						Name:     "mesh",
    						Port:     k8s.PortNumber(15008),
    						Protocol: "ALL",
    					}},
    				},
    			},
    			objects: defaultObjects,
    			values: `global:
      hub: test
      tag: test
      network: network-2`,
    		},
    		{
    			name: "waypoint-no-network-label",
    			gw: k8sbeta.Gateway{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "namespace",
    					Namespace: "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. tests/integration/helm/upgrade/util.go

    		_, oldClient, oldServer := sanitycheck.SetupTrafficTest(t, t, "")
    		sanitycheck.RunTrafficTestClientServer(t, oldClient, oldServer)
    
    		overrideValuesFile = helmtest.GetValuesOverrides(t, s.Image.Hub, s.Image.Tag, s.Image.Variant, "", isAmbient)
    		upgradeCharts(t, h, overrideValuesFile, nsConfig, isAmbient)
    		helmtest.VerifyInstallation(t, cs, nsConfig, true, isAmbient, "")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. manifests/charts/ztunnel/templates/daemonset.yaml

            - effect: NoExecute
              operator: Exists
          containers:
          - name: istio-proxy
    {{- if contains "/" .Values.image }}
            image: "{{ .Values.image }}"
    {{- else }}
            image: "{{ .Values.hub }}/{{ .Values.image | default "ztunnel" }}:{{ .Values.tag }}{{with (.Values.variant )}}-{{.}}{{end}}"
    {{- end }}
            ports:
            - containerPort: 15020
              name: ztunnel-stats
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/docker.md

    * <a href="https://hub.docker.com/_/postgres" class="external-link" target="_blank">PostgreSQL</a>
    * <a href="https://hub.docker.com/_/mysql" class="external-link" target="_blank">MySQL</a>
    * <a href="https://hub.docker.com/_/mongo" class="external-link" target="_blank">MongoDB</a>
    * <a href="https://hub.docker.com/_/redis" class="external-link" target="_blank">Redis</a>, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  5. tools/docker.yaml

    # This folder is then passed as the docker context. This avoids complex .dockerignore or large context loads.
    
    # Example image config
    example:
    - name: helloworld # Name of the image. Will end up pushed to <HUB>/helloworld:<TAG>
      dockerfile: helloworld/Dockerfile.proxyv2
      files:
      # Include a static file
      # Inside the Dockerfile, this is referenced by the base name (README.md), not the full name.
      - samples/README.md
      targets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. tests/integration/README.md

    | -istio.test.nocleanup | bool | Do not cleanup resources after test completion. |
    | -istio.test.select | string | Comma separated list of labels for selecting tests to run (e.g. 'foo,+bar-baz'). |
    | -istio.test.hub | string | Container registry hub to use (default HUB environment variable). |
    | -istio.test.tag | string | Common Container tag to use when deploying container images (default TAG environment variable). |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/kube/deployment.go

    		return nil, err
    	}
    
    	containerPorts := getContainerPorts(cfg)
    	appContainers := []map[string]any{{
    		"Name":           appContainerName,
    		"ImageFullPath":  settings.EchoImage, // This overrides image hub/tag if it's not empty.
    		"ContainerPorts": containerPorts,
    	}}
    
    	// Only use the custom image for proxyless gRPC instances. This will bind the gRPC ports on one container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject.go

    // docker.io/istio/proxyv2:1.12-distroless
    // gcr.io/gke-release/asm/proxyv2:1.11.2-asm.17-distroless
    // docker.io/istio/proxyv2:1.12
    func imageURL(hub, imageName, tag, imageType string) string {
    	return hub + "/" + imageName + ":" + updateImageTypeIfPresent(tag, imageType)
    }
    
    // KnownImageTypes are image types that istio pubishes.
    var KnownImageTypes = []string{ImageTypeDistroless, ImageTypeDebug}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Hub to pull the container image from. Image will be `Hub/Image:Tag-Variant`.
    	Hub string `protobuf:"bytes,2,opt,name=hub,proto3" json:"hub,omitempty"`
    	// The container image tag to pull. Image will be `Hub/Image:Tag-Variant`.
    	Tag *structpb.Value `protobuf:"bytes,3,opt,name=tag,proto3" json:"tag,omitempty"`
    	// Image name to pull from. Image will be `Hub/Image:Tag-Variant`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    If the output isn't present in the local cache, it'll be downloaded from the remote cache and also stored in the local cache.
    
    To try out the remote Build Cache, Gradle provides a free link:https://hub.docker.com/r/gradle/build-cache-node[Docker image] for a single remote Build Cache node.
    For production grade deployments, link:https://gradle.com/gradle-enterprise-solutions/build-cache/[Develocity] is recommended.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top