Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for proxy_protocol (0.76 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    			ListenerFilters: []*listener.ListenerFilter{
    				{
    					Name: "http-filter-to-be-removed-then-add",
    				},
    				{
    					Name: "before proxy_protocol",
    				},
    				{
    					Name: "envoy.filters.listener.proxy_protocol",
    				},
    				{
    					Name: "after proxy_protocol",
    				},
    			},
    		},
    		{
    			Name: "network-filter-to-be-replaced",
    			Address: &core.Address{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    	loadBalancer := policy.LoadBalancer
    	tls := policy.Tls
    	proxyProtocol := policy.ProxyProtocol
    
    	// Check if CA Certificate should be System CA Certificate
    	if features.VerifyCertAtClient && tls != nil && tls.CaCertificates == "" {
    		tls.CaCertificates = "system"
    	}
    
    	return connectionPool, outlierDetection, loadBalancer, tls, proxyProtocol
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. pkg/config/xds/filter_types.gen.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/original_src/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/proxy_protocol/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/listener/tls_inspector/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/connection_limit/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 02:48:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/util/util.go

    		mergedPolicy.Tls = subsetPolicy.Tls
    	}
    
    	if subsetPolicy.Tunnel != nil {
    		mergedPolicy.Tunnel = subsetPolicy.Tunnel
    	}
    	if subsetPolicy.ProxyProtocol != nil {
    		mergedPolicy.ProxyProtocol = subsetPolicy.ProxyProtocol
    	}
    	return mergedPolicy
    }
    
    func shadowCopyPortTrafficPolicy(portTrafficPolicy *networking.TrafficPolicy_PortTrafficPolicy) *networking.TrafficPolicy {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    type Connection struct {
    	// Protocol is the protocol used to connect from client to the konnectivity server.
    	ProxyProtocol ProtocolType
    
    	// Transport defines the transport configurations we use to dial to the konnectivity server.
    	// This is required if ProxyProtocol is HTTPConnect or GRPC.
    	// +optional
    	Transport *Transport
    }
    
    // ProtocolType is a set of valid values for Connection.ProtocolType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    type Connection struct {
    	// Protocol is the protocol used to connect from client to the konnectivity server.
    	ProxyProtocol ProtocolType `json:"proxyProtocol,omitempty"`
    
    	// Transport defines the transport configurations we use to dial to the konnectivity server.
    	// This is required if ProxyProtocol is HTTPConnect or GRPC.
    	// +optional
    	Transport *Transport `json:"transport,omitempty"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top