Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for proxy_protocol (0.6 sec)

  1. istioctl/pkg/describe/describe_test.go

    									OutlierDetection: &v1alpha32.OutlierDetection{MinHealthPercent: 10},
    								},
    							},
    							Tunnel:        nil,
    							ProxyProtocol: nil,
    						},
    					},
    				},
    			},
    			configDumps: map[string][]byte{
    				"productpage-v1-1234567890": config,
    				"ingress":                   []byte("{}"),
    			},
    			namespace:      "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K 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. hack/local-up-cluster.sh

    apiVersion: apiserver.k8s.io/v1beta1
    kind: EgressSelectorConfiguration
    egressSelections:
    - name: cluster
      connection:
        proxyProtocol: Direct
    - name: controlplane
      connection:
        proxyProtocol: Direct
    - name: etcd
      connection:
        proxyProtocol: Direct
    EOF
          EGRESS_SELECTOR_CONFIG_FILE="${TMP_DIR}/kube_egress_selector_configuration.yaml"
        fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pilot/pkg/networking/core/listener.go

    	var listenerFilters []*listener.ListenerFilter
    
    	// Strip PROXY header first for non-QUIC traffic if requested.
    	if opts.needPROXYProtocol {
    		listenerFilters = append(listenerFilters, xdsfilters.ProxyProtocol)
    	}
    
    	// add a TLS inspector if we need to detect ServerName or ALPN
    	// (this is not applicable for QUIC listeners)
    	if transport == istionetworking.TransportProtocolTCP {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                    type: object
                                type: object
                              maxItems: 4096
                              type: array
                            proxyProtocol:
                              description: The upstream PROXY protocol settings.
                              properties:
                                version:
                                  description: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                    type: object
                                type: object
                              maxItems: 4096
                              type: array
                            proxyProtocol:
                              description: The upstream PROXY protocol settings.
                              properties:
                                version:
                                  description: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        type: array
                                    type: object
                                type: object
                              type: array
                            proxyProtocol:
                              description: The upstream PROXY protocol settings.
                              properties:
                                version:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  10. 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