ingress-controller icon indicating copy to clipboard operation
ingress-controller copied to clipboard

ingress.pomerium.io/allow_spdy: "true" doesn't work

Open ssveta7ak opened this issue 1 year ago • 3 comments

What happened?

Annotation ingress.pomerium.io/allow_spdy: "true" doesn't work

What did you expect to happen?

How'd it happen?

  1. Add ingress.pomerium.io/allow_spdy: "true" to the ingress file and run Pomerium
  2. Open https://httpbin.localhost.pomerium.io in the browser
  3. In the browser (Firefox) do: Inspect -> Network -> Headers The HTTP/2 protocol is present instead of spdy

Screenshot from 2023-05-09 18-32-08.png

What's your environment like?

IC v0.220

What's your config.yaml?

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: httpbin
  annotations:
    ingress.pomerium.io/pass_identity_headers: "true"
    ingress.pomerium.io/allow_spdy: "true"
    ingress.pomerium.io/allow_any_authenticated_user: "true"
spec:
  ingressClassName: pomerium
  rules:
    - host: 'httpbin.localhost.pomerium.io'
      http:
        paths:
          - path: /
            pathType: Prefix
            backend:
              service:
                name: httpbin
                port:
                  name: http

What did you see in the logs?

# Paste your logs here.
# Be sure to scrub any sensitive values

Additional context

Add any other context about the problem here.

ssveta7ak avatar May 09 '23 18:05 ssveta7ak