You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When configuring spec.oidc.postLogoutRedirect, the CRD validation enforces the regex /[^\s{};\\]*, which only allows values starting with / and rejects absolute URIs. The field name suggests a URI, and according to the OIDC specification post_logout_redirect_uri must be an absolute URI registered with the IdP. The current implementation makes it difficult to redirect to other domains after logout.
The field should accept both relative paths (e.g. /logout) and absolute URIs (e.g. https://example.com/logout).