Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for TCPRoute (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tests/integration/pilot/testdata/gateway-api-crd.yaml

      name: tcproutes.gateway.networking.k8s.io
    spec:
      group: gateway.networking.k8s.io
      names:
        categories:
        - gateway-api
        kind: TCPRoute
        listKind: TCPRouteList
        plural: tcproutes
        singular: tcproute
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - jsonPath: .metadata.creationTimestamp
          name: Age
          type: date
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K 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)
  7. pkg/config/validation/validation_test.go

    					Destination: &networking.Destination{Host: "foo.baz"},
    				}},
    			}},
    		}, valid: true},
    		{name: "missing tcp route", in: &networking.VirtualService{
    			Hosts: []string{"foo.bar"},
    			Tcp: []*networking.TCPRoute{{
    				Match: []*networking.L4MatchAttributes{
    					{Port: 999},
    				},
    			}},
    		}, valid: false},
    		{name: "missing tls route", in: &networking.VirtualService{
    			Hosts: []string{"foo.bar"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                            used to permit a SecretObjectReference: \n * Gateway \n When
                            used to permit a BackendObjectReference: \n * GRPCRoute *
                            HTTPRoute * TCPRoute * TLSRoute * UDPRoute"
                          maxLength: 63
                          minLength: 1
                          pattern: ^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$
                          type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
Back to top