Skip to content

Gateway API support #70

Description

@gimmw

Probably not high on the priority list, but could operator support for Gateway API HTTPRoutes (additional to Ingress) be considered?

While Ingress isn't going anywhere any time soon, Gateway API is the emerging standard to which all future efforts will be directed.

In my no-ingress cluster, currently I'm just adding an additional HTTPRoute for each ShinyProxy instance and that works fine. Basically just something like

---
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
  name: sp-foo-httproute
  namespace: shinyproxy
spec:
  parentRefs:
  - name: my-gw
    namespace: gateways
  hostnames:
  - shiny.bar.blah
  rules:
    - matches:
      - path:
          type: PathPrefix
          value: /foo
      backendRefs:
        - name: sp-foo-svc
          port: 80

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions