Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for tcproutes (0.17 sec)

  1. 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)
  2. pkg/config/validation/virtualservice_test.go

    						},
    					},
    				},
    			},
    			valid: false,
    		},
    		{
    			name: "delegate with TCP route",
    			in: &networking.VirtualService{
    				Hosts: []string{},
    				Tcp: []*networking.TCPRoute{{
    					Route: []*networking.RouteDestination{{
    						Destination: &networking.Destination{Host: "foo.baz"},
    					}},
    				}},
    			},
    			valid: false,
    		},
    		{
    			name: "delegate with gateway",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

        gateway.networking.k8s.io/channel: standard
      creationTimestamp: null
      name: httproutes.gateway.networking.k8s.io
    spec:
      group: gateway.networking.k8s.io
      names:
        categories:
        - gateway-api
        kind: HTTPRoute
        listKind: HTTPRouteList
        plural: httproutes
        singular: httproute
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		}
    		for _, tlsRoute := range virtualService.Tls {
    			errs = AppendValidation(errs, validateTLSRoute(tlsRoute, virtualService, gatewaySemantics))
    		}
    		for _, tcpRoute := range virtualService.Tcp {
    			errs = AppendValidation(errs, validateTCPRoute(tcpRoute, gatewaySemantics))
    		}
    
    		errs = AppendValidation(errs, validateExportTo(cfg.Namespace, virtualService.ExportTo, false, false))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ads.go

    			sidecar = true
    			gateway = true
    		}
    		for conf := range request.ConfigsUpdated {
    			switch conf.Kind {
    			case kind.ServiceEntry, kind.DestinationRule, kind.VirtualService, kind.Sidecar, kind.HTTPRoute, kind.TCPRoute, kind.TLSRoute, kind.GRPCRoute:
    				sidecar = true
    			case kind.Gateway, kind.KubernetesGateway, kind.GatewayClass, kind.ReferenceGrant:
    				gateway = true
    			case kind.Ingress:
    				sidecar = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    	wildcardService   = host.Name("*")
    )
    
    var (
    	sidecarScopedKnownConfigTypes = sets.New(
    		kind.ServiceEntry,
    		kind.VirtualService,
    		kind.DestinationRule,
    		kind.Sidecar,
    
    		kind.HTTPRoute,
    		kind.TCPRoute,
    		kind.TLSRoute,
    		kind.GRPCRoute,
    	)
    
    	// clusterScopedKnownConfigTypes includes configs when they are in root namespace,
    	// they will be applied to all namespaces within the cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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