Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for GRPCRoute (0.2 sec)

  1. pilot/pkg/config/kube/gateway/testdata/weighted.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        name: http
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pkg/config/schema/kubeclient/resources.gen.go

    		return &k8sioapidiscoveryv1.EndpointSlice{}
    	case gvr.Endpoints:
    		return &k8sioapicorev1.Endpoints{}
    	case gvr.EnvoyFilter:
    		return &apiistioioapinetworkingv1alpha3.EnvoyFilter{}
    	case gvr.GRPCRoute:
    		return &sigsk8siogatewayapiapisv1.GRPCRoute{}
    	case gvr.Gateway:
    		return &apiistioioapinetworkingv1alpha3.Gateway{}
    	case gvr.GatewayClass:
    		return &sigsk8siogatewayapiapisv1beta1.GatewayClass{}
    	case gvr.HTTPRoute:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/zero.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        name: default
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
      - attachedRoutes: 1
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. pkg/config/schema/gvr/resources.gen.go

    	EnvoyFilter                    = schema.GroupVersionResource{Group: "networking.istio.io", Version: "v1alpha3", Resource: "envoyfilters"}
    	GRPCRoute                      = schema.GroupVersionResource{Group: "gateway.networking.k8s.io", Version: "v1", Resource: "grpcroutes"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/serviceentry.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        name: default
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: egress
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
    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/xds/nds.go

    	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 {
    		// NDS generally handles full push. We only allow partial pushes, when headless endpoints change.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.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
    }()
    
    func cdsNeedsPush(req *model.PushRequest, proxy *model.Proxy) bool {
    	if req == nil {
    		return true
    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/testdata/route-precedence.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        name: default
        supportedKinds:
        - group: gateway.networking.k8s.io
          kind: HTTPRoute
        - group: gateway.networking.k8s.io
          kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: http
      namespace: allowed-1
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion_test.go

    		case gvk.KubernetesGateway:
    			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:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/model.go

    )
    
    // GatewayResources stores all gateway resources used for our conversion.
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top