Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for tcproutes (1.44 sec)

  1. pilot/pkg/config/kube/gateway/testdata/zero.yaml.golden

        match:
        - uri:
            prefix: /get
        name: default.http.0
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TCPRoute/tcp.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: tcp-tcp-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    			// Only create a match if Uri is not nil. HttpMatchRequest cannot be empty
    			if httpMatch.Uri != nil {
    				httpRoute.Match = []*networking.HTTPMatchRequest{httpMatch}
    			}
    			httpRoutes = append(httpRoutes, httpRoute)
    		}
    
    		virtualService.Http = httpRoutes
    
    		virtualServiceConfig := config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K 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. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

        port: 80
        protocol: HTTP
      - name: scope-route
        hostname: "*.scope-route.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: TCPRoute
      - name: slctr-labels
        hostname: "*.slctr-labels.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/weighted.yaml.golden

            port:
              number: 8080
          weight: 3
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TCPRoute/tcp.default
        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: tcp-tcp-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/nds.go

    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.PeerAuthentication,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.MeshConfig,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func ndsNeedsPush(req *model.PushRequest) bool {
    	if req == nil {
    		return true
    	}
    	if !req.Full {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

        namespace: apple
        port: 80
      rules:
      - backendRefs:
        - name: httpbin-apple
          namespace: apple
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
      namespace: default
    spec:
      parentRefs:
        - group: ""
          kind: Service
          name: echo-1
      rules:
        - backendRefs:
            - name: echo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/serviceentry.status.yaml.golden

        controllerName: istio.io/gateway-controller
        parentRef:
          group: networking.istio.io
          kind: ServiceEntry
          name: egress
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      creationTimestamp: null
      name: egress
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. 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)
Back to top