Camunda 8.5 operate/tasklist/optimize - Invalid parameter: redirect_uri

Hello, when I try to access operate/tasklist/optimize I get the following message:
We are sorry…
Invalid parameter: redirect_uri
helm version “10.1.1”
address:
https://mydomain/operate
redirect:
https://mydomain/auth/realms/camunda-platform/protocol/openid-connect/auth?client_id=operate&redirect_uri=https%3A%2F%2Fmydomain%2Foperate%2Fidentity-callback&response_type=code&scope=openid+email&state=&audience=operate-api

ingress configuration on k8:

> spec:
>   ingressClassName: alb
>   rules:
>   - host: mydomain
>     http:
>       paths:
>       - backend:
>           service:
>             name: camunda-keycloak
>             port:
>               number: 80
>         path: /auth/*
>         pathType: ImplementationSpecific
>       - backend:
>           service:
>             name: camunda-identity
>             port:
>               number: 80
>         path: /identity
>         pathType: Prefix
>       - backend:
>           service:
>             name: camunda-operate
>             port:
>               number: 80
>         path: /operate
>         pathType: Prefix
>       - backend:
>           service:
>             name: camunda-optimize
>             port:
>               number: 80
>         path: /optimize
>         pathType: Prefix
>       - backend:
>           service:
>             name: camunda-tasklist
>             port:
>               number: 80
>         path: /tasklist
>         pathType: Prefix
helm configuration:
  --set global.ingress.host="mydomain" \
  --set global.identity.auth.publicIssuerUrl="https://mydomain/auth/realms/camunda-platform" \
  --set identity.contextPath="/identity" \
  --set identity.fullURL="https://mydomain/identity" \
  --set global.identity.auth.operate.redirectUrl="https://mydomain/operate" \
  --set global.identity.auth.tasklist.redirectUrl="https://mydomain/tasklist" \
  --set global.identity.auth.optimize.redirectUrl="https://mydomain/optimize" \
  --set operate.contextPath="/operate" \
  --set optimize.contextPath="/optimize" \
  --set tasklist.contextPath="/tasklist" \

What can this be linked to? Keycloak and Identity works fine.

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