Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gatewayTopology (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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