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
{{ message }}
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
the default value for the var eval_self_signed_certs is false. It causes the SSO provisioning to not set the ca: ca.crt property when it adds the OpenID connect IdentityProvider in the /etc/origin/master/master-config.yaml file.
look at roles/rhsso/tasks/indetityprovider.yml
- set_fact:
rhsso_identity_provider_ca_cert_path: ""when: not (eval_self_signed_certs | bool)
Expected Behavior
Authentication through SSO to be working.
Actual Behavior
The following authentication error appears on Master API logs:
E0924 12:22:51.686524 1 errorpage.go:26] AuthenticationError: Post https://sso-integr8tly-sso.apps.tjpe-fef2.open.redhat.com/auth/realms/openshift/protocol/openid-connect/token: x509: certificate signed by unknown authority
run the install playbook with eval_self_signed_certs default value which is false
after installation is completed try to authenticate through SSO using some of the provided integr8tly users.
You should see authentication error on master api logs like this:
E0924 12:22:51.686524 1 errorpage.go:26] AuthenticationError: Post https://sso-integr8tly-sso.apps.tjpe-fef2.open.redhat.com/auth/realms/openshift/protocol/openid-connect/token: x509: certificate signed by unknown authority
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description
the default value for the var
eval_self_signed_certs
isfalse
. It causes the SSO provisioning to not set theca: ca.crt
property when it adds the OpenID connect IdentityProvider in the/etc/origin/master/master-config.yaml
file.look at
roles/rhsso/tasks/indetityprovider.yml
Expected Behavior
Authentication through SSO to be working.
Actual Behavior
The following authentication error appears on Master API logs:
Environment
Steps to reproduce
eval_self_signed_certs
default value which isfalse
The text was updated successfully, but these errors were encountered: