Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for proxyv2 (0.21 sec)

  1. pkg/kube/inject/inject_test.go

    			},
    		},
    		{
    			in:   "proxy-override.yaml",
    			want: "proxy-override.yaml.injected",
    		},
    		{
    			in:   "explicit-security-context.yaml",
    			want: "explicit-security-context.yaml.injected",
    		},
    		{
    			in:   "only-proxy-container.yaml",
    			want: "only-proxy-container.yaml.injected",
    		},
    		{
    			in:   "proxy-override-args.yaml",
    			want: "proxy-override-args.yaml.injected",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/deployment.yaml

    {{- end }}
    {{- if .Values.global.proxy.enableCoreDump }}
          initContainers:
            - name: enable-core-dump
    {{- if contains "/" .Values.global.proxy.image }}
              image: "{{ .Values.global.proxy.image }}"
    {{- else }}
              image: "{{ .Values.global.hub }}/{{ .Values.global.proxy.image | default "proxyv2" }}:{{ .Values.global.tag }}{{with (.Values.global.proxy.variant | default .Values.global.variant)}}-{{.}}{{end}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

    {{- end }}
    {{- if .Values.global.proxy.enableCoreDump }}
          initContainers:
            - name: enable-core-dump
    {{- if contains "/" .Values.global.proxy.image }}
              image: "{{ .Values.global.proxy.image }}"
    {{- else }}
              image: "{{ .Values.global.hub }}/{{ .Values.global.proxy.image | default "proxyv2" }}:{{ .Values.global.tag }}{{with (.Values.global.proxy.variant | default .Values.global.variant)}}-{{.}}{{end}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. docs/em/docs/advanced/behind-a-proxy.md

    ↩ī¸ đŸ‘Ĩ ✔ī¸ đŸ—ŗ ⏎ī¸ ➡ 🔡 `/api/v1` 👆 📱, 🕸 đŸ’Ē ☕ 🗄 🔗 `/api/v1/openapi.json`.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip
        đŸ“ĸ `0.0.0.0` 🛎 ⚙ī¸ ⛓ 👈 📋 👂 🔛 🌐 đŸ“ĸ đŸ’Ē 👈 🎰/đŸ’Ŋ.
    
    đŸŠē 🎚 🔜 đŸ’Ē 🗄 🔗 đŸ“Ŗ 👈 👉 🛠ī¸ `server` 🔎 `/api/v1` (⛅ đŸ—ŗ). đŸ–ŧ:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/behind-a-proxy.md

    Because we have a proxy with a path prefix of `/api/v1` for our app, the frontend needs to fetch the OpenAPI schema at `/api/v1/openapi.json`.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pkg/model/proxy.go

    // how the user wants traffic to be intercepted for the listener. TrafficInterceptionMode is
    // always derived from the Proxy metadata
    type TrafficInterceptionMode string
    
    // NodeMetadata defines the metadata associated with a proxy
    // Fields should not be assumed to exist on the proxy, especially newly added fields which will not exist
    // on older versions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top