Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for tcproutes (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/config/kube/gateway/model.go

    type GatewayResources struct {
    	GatewayClass   []config.Config
    	Gateway        []config.Config
    	HTTPRoute      []config.Config
    	GRPCRoute      []config.Config
    	TCPRoute       []config.Config
    	TLSRoute       []config.Config
    	ReferenceGrant []config.Config
    	ServiceEntry   []config.Config
    	// Namespaces stores all namespace in the cluster, keyed by name
    	Namespaces map[string]*corev1.Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. samples/bookinfo/platform/kube/cleanup.sh

        kubectl delete -n "${NAMESPACE}" "$resource";
      done
    done
    
    # clean up Gateway API resources that may have been used
    if kubectl get crd gateways.gateway.networking.k8s.io >/dev/null 2>&1; then
      protos=( httproutes gateways.gateway.networking.k8s.io )
      for proto in "${protos[@]}"; do
        for resource in $(kubectl get -n "${NAMESPACE}" "$proto" -o name); do
          kubectl delete -n "${NAMESPACE}" "$resource";
        done
      done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. 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)
Back to top