Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TCPRoute (0.09 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)
  3. pilot/pkg/model/push_context.go

    			}
    		case kind.AuthorizationPolicy:
    			authzChanged = true
    		case kind.RequestAuthentication,
    			kind.PeerAuthentication:
    			authnChanged = true
    		case kind.HTTPRoute, kind.TCPRoute, kind.TLSRoute, kind.GRPCRoute, kind.GatewayClass, kind.KubernetesGateway, kind.ReferenceGrant:
    			gatewayAPIChanged = true
    			// VS and GW are derived from gatewayAPI, so if it changed we need to update those as well
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top