Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TransportSocketMatches (0.16 sec)

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

    				t.Errorf("Expected TransportSocket %v", test.expectTransportSocket)
    			}
    			if test.expectTransportSocketMatch && cluster.TransportSocketMatches == nil ||
    				!test.expectTransportSocketMatch && cluster.TransportSocketMatches != nil {
    				t.Errorf("Expected TransportSocketMatch %v", test.expectTransportSocketMatch)
    			}
    			upstreamProxyProtocol := &proxyprotocol.ProxyProtocolUpstreamTransport{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_waypoint.go

    	// Upstream of the "encap" listener.
    	clusters = append(clusters, cb.buildWaypointConnectOriginate(proxy, push))
    
    	for _, c := range clusters {
    		if c.TransportSocket != nil && c.TransportSocketMatches != nil {
    			log.Errorf("invalid cluster, multiple matches: %v", c.Name)
    		}
    	}
    	return clusters
    }
    
    // `inbound-vip||hostname|port`. EDS routing to the internal listener for each pod in the VIP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pilot/test/xdstest/validate.go

    		t.Errorf("cluster %v is invalid: %v", c.Name, err)
    	}
    	validateClusterTLS(t, c)
    }
    
    func validateClusterTLS(t testing.TB, c *cluster.Cluster) {
    	if c.TransportSocket != nil && c.TransportSocketMatches != nil {
    		t.Errorf("both transport_socket and transport_socket_matches set for %v", c)
    	}
    }
    
    func ValidateRoutes(t testing.TB, ls []*route.Route) {
    	for _, l := range ls {
    		ValidateRoute(t, l)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top