Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TypedExtensionProtocolOptions (0.27 sec)

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

    		LoadAssignment: &endpoint.ClusterLoadAssignment{
    			ClusterName: name,
    			Endpoints:   util.BuildInternalEndpoint(internalListener, nil),
    		},
    		TransportSocket: util.DefaultInternalUpstreamTransportSocket,
    		TypedExtensionProtocolOptions: map[string]*anypb.Any{
    			v3.HttpProtocolOptionsType: passthroughHttpProtocolOptions,
    		},
    	}
    }
    
    var (
    	MainInternalCluster = buildInternalUpstreamCluster(MainInternalName, MainInternalName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    		ConnectTimeout:       proto.Clone(cb.req.Push.Mesh.ConnectTimeout).(*durationpb.Duration),
    		LbPolicy:             cluster.Cluster_CLUSTER_PROVIDED,
    		TypedExtensionProtocolOptions: map[string]*anypb.Any{
    			v3.HttpProtocolOptionsType: passthroughHttpProtocolOptions,
    		},
    	}
    	cb.applyConnectionPool(cb.req.Push.Mesh, newClusterWrapper(cluster), &networking.ConnectionPoolSettings{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    					g.Expect(thresholds.MaxRequests).NotTo(BeNil())
    					g.Expect(thresholds.MaxRequests.Value).To(Equal(uint32(expected.Http.Http2MaxRequests)))
    					g.Expect(cluster.TypedExtensionProtocolOptions).NotTo(BeNil())
    					anyOptions := cluster.TypedExtensionProtocolOptions[v3.HttpProtocolOptionsType]
    					g.Expect(anyOptions).NotTo(BeNil())
    					httpProtocolOptions := &http.HttpProtocolOptions{}
    					anyOptions.UnmarshalTo(httpProtocolOptions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			cluster := cb.buildExternalSDSCluster(security.CredentialNameSocketPath)
    			path := cluster.LoadAssignment.Endpoints[0].LbEndpoints[0].GetEndpoint().Address.GetPipe().Path
    			anyOptions := cluster.TypedExtensionProtocolOptions[v3.HttpProtocolOptionsType]
    			if anyOptions == nil {
    				t.Errorf("cluster has no httpProtocolOptions")
    			}
    			if cluster.Name != tt.expectedName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top