Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for TCPRoute (0.31 sec)

  1. pkg/config/schema/collections/collections.gen.go

    		ClusterScoped: false,
    		Synthetic:     false,
    		Builtin:       true,
    		ValidateProto: validation.EmptyValidate,
    	}.MustBuild()
    
    	TCPRoute = resource.Builder{
    		Identifier: "TCPRoute",
    		Group:      "gateway.networking.k8s.io",
    		Kind:       "TCPRoute",
    		Plural:     "tcproutes",
    		Version:    "v1alpha2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  2. pkg/config/schema/kubetypes/resources.gen.go

    		return gvk.Sidecar, true
    	case *apiistioioapinetworkingv1alpha3.Sidecar:
    		return gvk.Sidecar, true
    	case *k8sioapiappsv1.StatefulSet:
    		return gvk.StatefulSet, true
    	case *sigsk8siogatewayapiapisv1alpha2.TCPRoute:
    		return gvk.TCPRoute, true
    	case *sigsk8siogatewayapiapisv1alpha2.TLSRoute:
    		return gvk.TLSRoute, true
    	case *istioioapitelemetryv1alpha1.Telemetry:
    		return gvk.Telemetry, true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conditions.go

    	case k8s.TLSProtocolType:
    		if l.TLS != nil && l.TLS.Mode != nil && *l.TLS.Mode == k8s.TLSModePassthrough {
    			supported = []k8s.RouteGroupKind{{Group: (*k8s.Group)(ptr.Of(gvk.TLSRoute.Group)), Kind: k8s.Kind(gvk.TLSRoute.Kind)}}
    		} else {
    			supported = []k8s.RouteGroupKind{{Group: (*k8s.Group)(ptr.Of(gvk.TCPRoute.Group)), Kind: k8s.Kind(gvk.TCPRoute.Kind)}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/config/schema/kubeclient/resources.gen.go

    	case gvr.Sidecar:
    		return &apiistioioapinetworkingv1alpha3.Sidecar{}
    	case gvr.StatefulSet:
    		return &k8sioapiappsv1.StatefulSet{}
    	case gvr.TCPRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.TCPRoute{}
    	case gvr.TLSRoute:
    		return &sigsk8siogatewayapiapisv1alpha2.TLSRoute{}
    	case gvr.Telemetry:
    		return &apiistioioapitelemetryv1alpha1.Telemetry{}
    	case gvr.UDPRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion_test.go

    			out.Gateway = append(out.Gateway, c)
    		case gvk.HTTPRoute:
    			out.HTTPRoute = append(out.HTTPRoute, c)
    		case gvk.GRPCRoute:
    			out.GRPCRoute = append(out.GRPCRoute, c)
    		case gvk.TCPRoute:
    			out.TCPRoute = append(out.TCPRoute, c)
    		case gvk.TLSRoute:
    			out.TLSRoute = append(out.TLSRoute, c)
    		case gvk.ReferenceGrant:
    			out.ReferenceGrant = append(out.ReferenceGrant, c)
    		case gvk.ServiceEntry:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/cds.go

    var pushCdsGatewayConfig = func() sets.Set[kind.Kind] {
    	s := sets.New(
    		kind.VirtualService,
    		kind.Gateway,
    
    		kind.KubernetesGateway,
    		kind.HTTPRoute,
    		kind.TCPRoute,
    		kind.TLSRoute,
    		kind.GRPCRoute,
    	)
    	if features.JwksFetchMode != jwt.Istiod {
    		s.Insert(kind.RequestAuthentication)
    	}
    	return s
    }()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway_test.go

    					Spec: &networking.VirtualService{
    						Gateways: []string{"testns/gateway1"},
    						Hosts:    []string{"tcp.example.com"},
    						Tcp: []*networking.TCPRoute{
    							{
    								Match: []*networking.L4MatchAttributes{
    									{
    										Port: 9443,
    									},
    								},
    								Route: []*networking.RouteDestination{
    									{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  9. 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)
  10. tests/integration/pilot/gateway_test.go

      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /get/
        backendRefs:
        - name: b
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - backendRefs:
        - name: b
          port: 80
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top