Hi iam currently trying to integrate hue to our keycloak deployment.
Iam using the offical Helm from helm repo add gethue https://helm.gethue.com
Following changes has been done:
[[auth]]
backend=desktop.auth.backend.OIDCBackend
[[oidc]]
# The client ID as relay party set in OpenID provider
oidc_rp_client_id=xxxxx_analytics
# The client secret as relay party set in OpenID provider
oidc_rp_client_secret=XXXf551b-XXXX6-4d08-8ed0-ebfbedXXXXXe1
# The OpenID provider authoriation endpoint
oidc_op_authorization_endpoint=http://auth.XXXXX.io/auth/realms/XXXXX_analytics/protocol/openid-connect/auth
# The OpenID provider token endpoint
oidc_op_token_endpoint=http://auth.XXXXX.io/auth/realms/XXXXXX_analytics/protocol/openid-connect/token
# The OpenID provider user info endpoint
oidc_op_user_endpoint=http://auth.XXXXXX.io/auth/realms/XXXXXX_analytics/protocol/openid-connect/userinfo
oidc_verify_ssl=true
login_redirect_url=https://analytics.XXXXXXX.io/oidc/callback/
create_users_on_login=true
But fails with
ModuleNotFoundError: No module named ‘mozilla_django_oidc’
Do i miss some configuration or is this package just missing in the image?
thanks for any pointer.