Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for gatewayTopology (0.21 sec)

  1. tests/integration/security/policy_attachment_only/main_test.go

    				cfg.ControlPlaneValues = `
    values:
      pilot: 
        env: 
          PILOT_JWT_ENABLE_REMOTE_JWKS: true
          ENABLE_SELECTOR_BASED_K8S_GATEWAY_POLICY: false
    meshConfig:
      defaultConfig:
        gatewayTopology:
          numTrustedProxies: 1 # Needed for X-Forwarded-For (See https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)
    `
    			} else {
    				cfg.ControlPlaneValues = `
    values:
      pilot: 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. tests/integration/pilot/gw_topology_test.go

    spec:
      selector:
        matchLabels:
          istio: ingressgateway
      template:
        metadata:
          annotations:
            inject.istio.io/templates: gateway
            proxy.istio.io/config: |
              gatewayTopology:
                numTrustedProxies: 2
          labels:
            istio: ingressgateway
            {{ .injectLabel }}
        spec:
          {{- if ne .imagePullSecret "" }}
          imagePullSecrets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. tests/integration/security/main_test.go

    			cfg.ControlPlaneValues = `
    values:
      global:
        logging:
          level: delta:debug
      pilot: 
        env: 
          PILOT_JWT_ENABLE_REMOTE_JWKS: true
    meshConfig:
      defaultConfig:
        gatewayTopology:
          numTrustedProxies: 1 # Needed for X-Forwarded-For (See https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)
    `
    		})).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. releasenotes/notes/remote-ip.yaml

    http/https load balancer in front of the ingress gateway, the "remote.ip" attribute is set to the original client IP address determined by the X-Forwarded-For http header from the trusted proxy configured through the numTrustedProxies field of the gatewayTopology under the meshConfig when you install Istio or set it via an annotation on the ingress gateway.  See the documentation here: [Configuring Gateway Network Topology](https://istio.io/latest/docs/ops/configuration/traffic-management/network-topologies/)....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 23 17:46:08 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. operator/pkg/util/merge_iop.go

    	ExtraStatTags                  []string                                `json:"extraStatTags" patchStrategy:"replace"`
    	GatewayTopology                *v1alpha13.Topology                     `json:"gatewayTopology" patchStrategy:"replace"`
    }
    
    type tracing struct {
    	TlSSettings *v1alpha3.ClientTLSSettings `json:"tlsSettings" patchStrategy:"merge"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:41 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway.go

    	if proxyConfig != nil && proxyConfig.GatewayTopology != nil {
    		xffNumTrustedHops = proxyConfig.GatewayTopology.NumTrustedProxies
    		if proxyConfig.GatewayTopology.ForwardClientCertDetails != meshconfig.ForwardClientCertDetails_UNDEFINED {
    			forwardClientCertDetails = util.MeshConfigToEnvoyForwardClientCertDetails(proxyConfig.GatewayTopology.ForwardClientCertDetails)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_test.go

    			server: &networking.Server{
    				Port: &networking.Port{
    					Protocol: protocol.HTTP.String(),
    				},
    			},
    			routeName: "some-route",
    			proxyConfig: &meshconfig.ProxyConfig{
    				GatewayTopology: &meshconfig.Topology{
    					NumTrustedProxies:        2,
    					ForwardClientCertDetails: meshconfig.ForwardClientCertDetails_APPEND_FORWARD,
    				},
    			},
    			result: &filterChainOpts{
    				sniHosts:   nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
Back to top