Dear,
We have setup Kasten with OIDC integration with our Keycloak instance.
We can login in Kasten with our keycloak credentials, however, given that the Access Token has a lifetime of 5 minutes we are loged out from kasten after 5 minutes, like if the Refresh Token is not used.
We have configured Kasten like this:
data:
provider-url: {{ $providerUrl | b64enc }}
redirect-url: {{ $clusterUrlTrimmed | b64enc }}
logout-url: {{ $logoutUrl | b64enc }}
client-id: {{ .Values.identityProvider.clientID | b64enc }}
client-secret: {{ .Values.identityProvider.clientSecret | b64enc }}
scopes: {{ .Values.identityProvider.scopes | b64enc }}
usernameClaim: {{ .Values.identityProvider.usernameClaim | b64enc }}
usernamePrefix: {{ .Values.identityProvider.usernamePrefix | b64enc }}
groupClaim: {{ .Values.identityProvider.groupClaim | b64enc }}
I don’t know if this is the expected behaviour.