Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for proxy_protocol (1.43 sec)

  1. pkg/config/xds/deprecated.go

    		wellknown.OriginalDestination:         "envoy.listener.original_dst",
    		"envoy.filters.listener.original_src": "envoy.listener.original_src",
    		wellknown.ProxyProtocol:               "envoy.listener.proxy_protocol",
    		wellknown.TLSInspector:                "envoy.listener.tls_inspector",
    		wellknown.ClientSSLAuth:               "envoy.client_ssl_auth",
    		wellknown.ExternalAuthorization:       "envoy.ext_authz",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/wellknown/wellknown.go

    )
    
    // Listener filter names
    const (
    	// OriginalDestination listener filter
    	OriginalDestination = "envoy.filters.listener.original_dst"
    	// ProxyProtocol listener filter
    	ProxyProtocol = "envoy.filters.listener.proxy_protocol"
    	// TLSInspector listener filter
    	TLSInspector = "envoy.filters.listener.tls_inspector" // nolint:golint,revive
    	// HTTPInspector listener filter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy_test.go

    	"fmt"
    	"reflect"
    	"testing"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	proxyprotocol "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/proxy_protocol/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. releasenotes/notes/destination-rule-proxyprotocol

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
      **Added** support for outbound traffic Proxy Protocol. By specifying proxyProtocol in a DestinationRule.trafficPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 329 bytes
    - Viewed (0)
  5. tests/integration/pilot/gw_topology_test.go

            sidecar.istio.io/componentLogLevel: conn_handler:debug,connection:debug,http:debug
            proxy.istio.io/config: |
              gatewayTopology:
                numTrustedProxies: 1
                proxyProtocol: {}
          labels:
            istio: ingressgateway
            {{ .injectLabel }}
        spec:
          {{- if ne .imagePullSecret "" }}
          imagePullSecrets:
          - name: {{ .imagePullSecret }}
          {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/egressselector/config.go

    	if config == nil {
    		return allErrs // Treating a nil configuration as valid
    	}
    	for _, service := range config.EgressSelections {
    		fldPath := field.NewPath("service", "connection")
    		switch service.Connection.ProxyProtocol {
    		case apiserver.ProtocolDirect:
    			allErrs = append(allErrs, validateDirectConnection(service.Connection, fldPath)...)
    		case apiserver.ProtocolHTTPConnect:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top