stormshift / support

This repo should serve as a central source for reporting issues with stormshift
GNU General Public License v3.0
3 stars 0 forks source link

sso.coe sometimes HTTP ERROR 431 #168

Closed rbo closed 1 month ago

rbo commented 1 month ago

Sometimes if I'm log in via COE-SSO or COE-SSO-Admin at the ISAR cluster I'm running into an HTTP ERROR 431

rbo commented 1 month ago

In general: 431 Request Header Fields Too Large

rbo commented 1 month ago

https://github.com/keycloak/keycloak/issues/13933

Work-a-round: quarkus.http.limits.max-header-size=40K

QUARKUS_HTTP_HTTP2=false QUARKUS_HTTP_LIMITS_MAX_HEADER_SIZE=40k

Fixed via:

  unsupported:
    podTemplate:
      spec:
        containers:
          - env:
            - name: QUARKUS_HTTP_HTTP2
              value: false
            - name: QUARKUS_HTTP_LIMITS_MAX_HEADER_SIZE
              value: 40k