Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for TCPRoute (0.17 sec)

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

            host: echo.default.svc.domain.suffix
            port:
              number: 80
    ---
    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:
      - mesh
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

          sectionName: foobar
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      creationTimestamp: null
      name: wrong-protocol
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: kind gateway.networking.k8s.io/v1alpha2/TCPRoute is not allowed
          reason: NotAllowedByListeners
          status: "False"
          type: Accepted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/validation_test.go

    				"gateway.networking.k8s.io/v1beta1/GatewayClass",
    				"gateway.networking.k8s.io/v1/HTTPRoute",
    				"gateway.networking.k8s.io/v1beta1/HTTPRoute",
    				"gateway.networking.k8s.io/v1alpha2/TCPRoute",
    				"gateway.networking.k8s.io/v1alpha2/TLSRoute",
    				"gateway.networking.k8s.io/v1beta1/ReferenceGrant",
    				"gateway.networking.k8s.io/v1alpha2/ReferenceGrant",
    			} {
    				recognized.Delete(gvk)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice.go

    		if !ok {
    			log.Errorf("invalid InternalParentName parts: %s", p)
    			continue
    		}
    		var k kind.Kind
    		switch ks {
    		case kind.HTTPRoute.String():
    			k = kind.HTTPRoute
    		case kind.TCPRoute.String():
    			k = kind.TCPRoute
    		case kind.TLSRoute.String():
    			k = kind.TLSRoute
    		case kind.GRPCRoute.String():
    			k = kind.GRPCRoute
    		case kind.UDPRoute.String():
    			k = kind.UDPRoute
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds.go

    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    	kind.HTTPRoute,
    	kind.TCPRoute,
    	kind.TLSRoute,
    	kind.GRPCRoute,
    )
    
    func edsNeedsPush(updates model.XdsUpdates) bool {
    	// If none set, we will always push
    	if len(updates) == 0 {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pkg/config/schema/metadata.yaml

        proto: "k8s.io.gateway_api.api.v1alpha1.GRPCRouteSpec"
        statusProto: "k8s.io.gateway_api.api.v1alpha1.GRPCRouteStatus"
        statusProtoPackage: "sigs.k8s.io/gateway-api/apis/v1"
    
      - kind: "TCPRoute"
        plural: "tcproutes"
        group: "gateway.networking.k8s.io"
        version: "v1alpha2"
        protoPackage: "sigs.k8s.io/gateway-api/apis/v1alpha2"
        proto: "k8s.io.gateway_api.api.v1alpha1.TCPRouteSpec"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top