Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for h2UpgradePolicy (0.24 sec)

  1. pilot/pkg/networking/core/cluster_traffic_policy.go

    			log.Debugf("Upgrading cluster: %v (%v %v)", clusterName, mesh.H2UpgradePolicy, override)
    			return true
    		}
    		if override == networking.ConnectionPoolSettings_HTTPSettings_DO_NOT_UPGRADE {
    			log.Debugf("Not upgrading cluster: %v (%v %v)", clusterName, mesh.H2UpgradePolicy, override)
    			return false
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			clusterName: "bar",
    			port:        &model.Port{Protocol: protocol.HTTP},
    			mesh:        &meshconfig.MeshConfig{H2UpgradePolicy: meshconfig.MeshConfig_UPGRADE},
    			connectionPool: &networking.ConnectionPoolSettings{
    				Http: &networking.ConnectionPoolSettings_HTTPSettings{
    					H2UpgradePolicy: networking.ConnectionPoolSettings_HTTPSettings_DEFAULT,
    				},
    			},
    			upgrade: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                              properties:
                                http:
                                  description: HTTP connection pool settings.
                                  properties:
                                    h2UpgradePolicy:
                                      description: |-
                                        Specify if http1.1 connection should be upgraded to http2 for the associated destination.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                              properties:
                                http:
                                  description: HTTP connection pool settings.
                                  properties:
                                    h2UpgradePolicy:
                                      description: |-
                                        Specify if http1.1 connection should be upgraded to http2 for the associated destination.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    			Http1MaxPendingRequests:  1024,
    			Http2MaxRequests:         1024,
    			MaxRequestsPerConnection: 1024,
    			MaxRetries:               1024,
    			IdleTimeout:              durationpb.New(5 * time.Second),
    			H2UpgradePolicy:          networking.ConnectionPoolSettings_HTTPSettings_UPGRADE,
    		},
    		Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    			MaxConnections: 1024,
    			ConnectTimeout: durationpb.New(6 * time.Second),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. 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)
  7. pkg/config/validation/validation_test.go

    				ConnectionPool: &networking.ConnectionPoolSettings{
    					Http: &networking.ConnectionPoolSettings_HTTPSettings{
    						H2UpgradePolicy:   networking.ConnectionPoolSettings_HTTPSettings_UPGRADE,
    						UseClientProtocol: true,
    					},
    				},
    			},
    			valid: false,
    		},
    	}
    	for _, c := range cases {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
Back to top