Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for proxyv2 (0.12 sec)

  1. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/namespace
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint.yaml

            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/default/deployments/namespace
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/deployment/cluster-ip.yaml

            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: test/proxyv2:test
            name: istio-proxy
            ports:
            - containerPort: 15021
              name: status-port
              protocol: TCP
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject.go

    }
    
    // imageURL creates url from parts.
    // imageType is appended if not empty
    // if imageType is already present in the tag, then it is replaced.
    // 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)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. prow/lib.sh

      ROOT=$(dirname "$WD")
      "$ROOT/prow/buildx-create"
    }
    
    function build_images() {
      SELECT_TEST="${1}"
    
      # Build just the images needed for tests
      targets="docker.pilot docker.proxyv2 "
    
      # use ubuntu:jammy to test vms by default
      nonDistrolessTargets="docker.app docker.app_sidecar_ubuntu_noble docker.ext-authz "
      if [[ "${JOB_TYPE:-presubmit}" == "postsubmit" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
    
        proxy:
          image: proxyv2
    
          # This controls the 'policy' in the sidecar injector.
          autoInject: enabled
    
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        priorityClassName: ""
        proxy:
          image: proxyv2
          # This controls the 'policy' in the sidecar injector.
          autoInject: enabled
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
          # cluster domain. Default value is "cluster.local".
          clusterDomain: "cluster.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    	}
    
    	tests := []struct {
    		deploymentName string
    		containerName  string
    		want           string
    	}{
    		{
    			deploymentName: "istio-ingressgateway",
    			containerName:  "istio-proxy",
    			want:           "istio-spec.hub/proxyv2:istio-spec.tag",
    		},
    		{
    			deploymentName: "istiod",
    			containerName:  "discovery",
    			want:           "component.pilot.hub/pilot:2",
    		},
    	}
    
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string excludeIPRanges = 13;
    
      // Image name or path for the proxy, default: "proxyv2".
      //
      // If registry or tag are not specified, global.hub and global.tag are used.
      //
      // Examples: my-proxy (uses global.hub/tag), docker.io/myrepo/my-proxy:v1.0.0
      string image = 14;
    
      // Lists the IP ranges of Istio egress traffic that the sidecar captures.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top