Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for GRPCRoute (0.14 sec)

  1. pilot/pkg/config/kube/gateway/conditions.go

    		// Only terminate allowed, so its always HTTP
    		supported = []k8s.RouteGroupKind{
    			{Group: (*k8s.Group)(ptr.Of(gvk.HTTPRoute.Group)), Kind: k8s.Kind(gvk.HTTPRoute.Kind)},
    			{Group: (*k8s.Group)(ptr.Of(gvk.GRPCRoute.Group)), Kind: k8s.Kind(gvk.GRPCRoute.Kind)},
    		}
    	case k8s.TCPProtocolType:
    		supported = []k8s.RouteGroupKind{{Group: (*k8s.Group)(ptr.Of(gvk.TCPRoute.Group)), Kind: k8s.Kind(gvk.TCPRoute.Kind)}}
    	case k8s.TLSProtocolType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/http.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: default
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mesh.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: consumer-override
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    			AllowedKinds: []k8s.RouteGroupKind{
    				{Group: (*k8s.Group)(ptr.Of(gvk.HTTPRoute.Group)), Kind: k8s.Kind(gvk.HTTPRoute.Kind)},
    				{Group: (*k8s.Group)(ptr.Of(gvk.GRPCRoute.Group)), Kind: k8s.Kind(gvk.GRPCRoute.Kind)},
    				{Group: (*k8s.Group)(ptr.Of(gvk.TCPRoute.Group)), Kind: k8s.Kind(gvk.TCPRoute.Kind)},
    				{Group: (*k8s.Group)(ptr.Of(gvk.TLSRoute.Group)), Kind: k8s.Kind(gvk.TLSRoute.Kind)},
    			},
    		},
    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/model/virtualservice.go

    		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:
    			// shouldn't happen
    			continue
    		}
    		name, ns, ok := strings.Cut(nsname, ".")
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pilot/pkg/xds/eds.go

    	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
    	}
    	for config := range updates {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                      If both the Listener and GRPCRoute have specified hostnames, any
                      GRPCRoute hostnames that do not match the Listener hostname MUST be
                      ignored. For example, if a Listener specified `*.example.com`, and the
                      GRPCRoute specified `test.example.com` and `test.example.net`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  8. pkg/config/schema/metadata.yaml

        proto: "k8s.io.gateway_api.api.v1alpha1.HTTPRouteSpec"
        statusProto: "k8s.io.gateway_api.api.v1alpha1.HTTPRouteStatus"
        statusProtoPackage: "sigs.k8s.io/gateway-api/apis/v1beta1"
    
      - kind: "GRPCRoute"
        plural: "grpcroutes"
        group: "gateway.networking.k8s.io"
        version: "v1"
        versionAliases:
        - "v1alpha2"
        protoPackage: "sigs.k8s.io/gateway-api/apis/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. tests/integration/pilot/gateway_test.go

            add:
            - name: my-added-header
              value: added-value
        backendRefs:
        - name: b
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: GRPCRoute
    metadata:
      name: grpc
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: c
      - name: gateway
        namespace: istio-system
      rules:
      - matches:
        - method:
    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. pilot/pkg/xds/ads.go

    			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
    				gateway = 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)
Back to top