Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TCPRoute (0.19 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    			} else if string(from.Group) == gvk.TLSRoute.Group && string(from.Kind) == gvk.TLSRoute.Kind {
    				fromKey.Kind = gvk.TLSRoute
    			} else if string(from.Group) == gvk.TCPRoute.Group && string(from.Kind) == gvk.TCPRoute.Kind {
    				fromKey.Kind = gvk.TCPRoute
    			} else {
    				// Not supported type. Not an error; may be for another controller
    				continue
    			}
    			for _, to := range rp.To {
    				toKey := Reference{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		Labels: map[string]string{
    			"istio": "ingressgateway",
    		},
    	}
    	virtualServiceSpec = &networking.VirtualService{
    		Hosts:    []string{"test.com"},
    		Gateways: []string{"mesh"},
    		Tcp: []*networking.TCPRoute{
    			{
    				Match: []*networking.L4MatchAttributes{
    					{
    						DestinationSubnets: []string{"10.10.0.0/24"},
    						Port:               8080,
    					},
    				},
    				Route: []*networking.RouteDestination{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top