Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for TCPRoute (1.5 sec)

  1. pilot/pkg/config/kube/crdclient/types.gen.go

    			Patch(context.TODO(), orig.Name, typ, patchBytes, metav1.PatchOptions{FieldManager: "pilot-discovery"})
    	case gvk.TCPRoute:
    		oldRes := &sigsk8siogatewayapiapisv1alpha2.TCPRoute{
    			ObjectMeta: origMeta,
    			Spec:       *(orig.Spec.(*sigsk8siogatewayapiapisv1alpha2.TCPRouteSpec)),
    		}
    		modRes := &sigsk8siogatewayapiapisv1alpha2.TCPRoute{
    			ObjectMeta: modMeta,
    			Spec:       *(mod.Spec.(*sigsk8siogatewayapiapisv1alpha2.TCPRouteSpec)),
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  2. 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)
  3. istioctl/pkg/describe/describe.go

    				facts++
    			}
    		} else {
    			mismatchNotes = append(mismatchNotes, newfacts...)
    		}
    	}
    
    	// TODO vsSpec.Tls if I can find examples in the wild
    
    	for _, tcpRoute := range vs.Spec.Tcp {
    		routeMatch, newfacts := tcpRouteMatchSvc(vs, tcpRoute, svc)
    		if routeMatch {
    			matches++
    			for _, newfact := range newfacts {
    				fmt.Fprintf(writer, "%s%s\n", printSpaces(initPrintNum+printLevel1), newfact)
    				facts++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    				GroupVersionKind: gvk.VirtualService,
    				Name:             "virtualbar",
    				Namespace:        "foo",
    			},
    			Spec: &networking.VirtualService{
    				Hosts: []string{"virtualbar"},
    				Tcp: []*networking.TCPRoute{
    					{
    						Route: []*networking.RouteDestination{
    							{
    								Destination: &networking.Destination{
    									Host: "baz.svc.cluster.local", Port: &networking.PortSelector{Number: 7000},
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. 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)
  6. 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