K8 setup and global.identity.keycloak.contextPath

Hi, for the contextPath configuration I would like to add asterisk at the end of the value, but unfortunately when I configure as contextPath=“/auth/*”, an extra slash is added to the value during parsing. This is what it looks like in the final backend configuration where and the service stops working.

path: /auth/*/

      - backend:
          service:
            name: camunda-keycloak
            port:
              number: 80
        path: /auth/*/
        pathType: ImplementationSpecific

I have to manually edit ingress and add asterisk to achieve the intended effect, without this, keycloak does not work for me.
The effect I want to achieve:

      - backend:
          service:
            name: camunda-keycloak
            port:
              number: 80
        path: /auth/*
        pathType: ImplementationSpecific

camunda 8.5
helm chart version “10.1.1”
--set global.identity.keycloak.contextPath="/auth/*"

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.