Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for proxy_protocol (0.35 sec)

  1. tests/integration/pilot/common/routing.go

    				Scheme:  scheme.TCP,
    				Address: gateway,
    				// Envoy requires PROXY protocol TCP payloads have a minimum size, see:
    				// https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/filters/listener/proxy_protocol/v3/proxy_protocol.proto
    				// If the PROXY protocol filter is enabled, Envoy should parse and consume the header out of the TCP payload, otherwise echo it back as-is.
    				Message:              "This is a test TCP message",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		validateProxyProtocol(policy.ProxyProtocol))
    }
    
    func validateProxyProtocol(proxyProtocol *networking.TrafficPolicy_ProxyProtocol) (errs error) {
    	if proxyProtocol == nil {
    		return
    	}
    	if proxyProtocol.Version != 0 && proxyProtocol.Version != 1 {
    		errs = appendErrors(errs, fmt.Errorf("proxy protocol version is invalid: %d", proxyProtocol.Version))
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    kind: EgressSelectorConfiguration
    egressSelections:
    - name: cluster
      connection:
        proxyProtocol: GRPC
        transport:
          uds:
            udsName: /etc/srv/kubernetes/konnectivity-server/konnectivity-server.socket
    - name: controlplane
      connection:
        proxyProtocol: Direct
    - name: etcd
      connection:
        proxyProtocol: Direct
    EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway_test.go

    							},
    						},
    					},
    				},
    			},
    			proxyConfig: &pilot_model.NodeMetaProxyConfig{
    				GatewayTopology: &meshconfig.Topology{ProxyProtocol: &meshconfig.Topology_ProxyProtocolConfiguration{}},
    			},
    			expectedListener: listenertest.ListenerTest{
    				FilterChains: []listenertest.FilterChainTest{
    					{
    						NetworkFilters: []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    string to present to the server during TLS handshake. type: string subjectAltNames: description: A list of alternate names to verify the subject identity in the certificate. items: type: string type: array type: object type: object type: array proxyProtocol: description: The upstream PROXY protocol settings. properties: version: description: The PROXY protocol version to use. enum: - V1 - V2 type: string type: object tls: description: TLS related settings for connections to the upstream service. properties:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top