Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for useClientProtocol (0.34 sec)

  1. releasenotes/notes/use-client-protocol.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 15 08:36:20 UTC 2020
    - 168 bytes
    - Viewed (0)
  2. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_builder_test.go

    				TrafficPolicy: &networking.TrafficPolicy{
    					ConnectionPool: &networking.ConnectionPoolSettings{
    						Http: &networking.ConnectionPoolSettings_HTTPSettings{
    							MaxRetries:        10,
    							UseClientProtocol: true,
    						},
    					},
    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{},
    		},
    		{
    			name:        "destination rule with maxRequestsPerConnection",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        given time.
                                      format: int32
                                      type: integer
                                    useClientProtocol:
                                      description: If set to true, client protocol will
                                        be preserved while initiating connection to backend.
                                      type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_traffic_policy.go

    		if http2ProtocolOptions != nil && maxConcurrentStreams > 0 {
    			http2ProtocolOptions.MaxConcurrentStreams = &wrapperspb.UInt32Value{Value: maxConcurrentStreams}
    		}
    	}
    	if settings.Http != nil && settings.Http.UseClientProtocol {
    		// Use downstream protocol. If the incoming traffic use HTTP 1.1, the
    		// upstream cluster will use HTTP 1.1, if incoming traffic use HTTP2,
    		// the upstream cluster will use HTTP2.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                        given time.
                                      format: int32
                                      type: integer
                                    useClientProtocol:
                                      description: If set to true, client protocol will
                                        be preserved while initiating connection to backend.
                                      type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                        given time.
                                      format: int32
                                      type: integer
                                    useClientProtocol:
                                      description: If set to true, client protocol will
                                        be preserved while initiating connection to backend.
                                      type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder.go

    	// concern for plaintext, but we do not have a way to distinguish https vs http here. If users of
    	// gateway want this behavior, they can configure UseClientProtocol explicitly.
    	if cb.sidecarProxy() && port.Protocol.IsUnsupported() {
    		// Use downstream protocol. If the incoming traffic use HTTP 1.1, the
    		// upstream cluster will use HTTP 1.1, if incoming traffic use HTTP2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: Maximum number of requests per connection to a backend. format: int32 type: integer maxRetries: description: Maximum number of retries that can be outstanding to all hosts in a cluster at a given time. format: int32 type: integer useClientProtocol: description: If set to true, client protocol will be preserved while initiating connection to backend. type: boolean type: object tcp: description: Settings common to both HTTP and TCP upstream connections. properties: connectTimeout: description:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    			errs = appendErrors(errs, agent.ValidateDuration(httpSettings.IdleTimeout))
    		}
    		if httpSettings.H2UpgradePolicy == networking.ConnectionPoolSettings_HTTPSettings_UPGRADE && httpSettings.UseClientProtocol {
    			errs = appendErrors(errs, fmt.Errorf("use client protocol must not be true when H2UpgradePolicy is UPGRADE"))
    		}
    		if httpSettings.MaxConcurrentStreams < 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top