Hello,
I am migrating keycloak configuration to CRDs , however I am stuck on 1 setting that it is not working which is " frontchannelLogout: false". No matter what I do, it stay’s true. Am I missing a setting?
apiVersion: keycloak.org/v1alpha1
kind: KeycloakClient
metadata:
name: lenses
labels:
client: lenses
spec:
realmSelector:
matchLabels:
realm: minotaur
client:
clientId: 'https://example.com'
name: Lenses
enabled: true
surrogateAuthRequired: false
clientAuthenticatorType: client-secret
protocol: saml
authnStatement: true
signDocuments: true
signature: RSA_SHA256
standardFlowEnabled: true
samlSignatureKeyName: KEY_ID
canonicalizationMethod: EXCLUSIVE
frontchannelLogout: false
publicClient: false
rootUrl: 'https://example.com'
redirectUris:
- 'https://example.com/*'
adminUrl: 'https://example.com/api/v2/auth/saml/callback?client'
attributes:
saml_force_post_binding: 'true'
saml.force.post.binding: 'true'
login_theme: keycloak
saml_name_id_format: email
saml_force_name_id_format: 'true'
saml.client.signature: 'false'
frontchannel.logout.session.required: 'false'
frontchannel.logout: 'false'
frontchannel_logout: 'false'
frontchannel_logout_session: 'false'
frontchannel.logout.session: 'false'
saml.signature.algorithm: RSA_SHA256
saml_client_signature: 'false'
saml_force_name_id_format: 'true'
saml.client.signature: 'false'
saml.authnstatement: 'true'
saml_name_id_format: email
notBefore: 0
bearerOnly: false
consentRequired: false
implicitFlowEnabled: false
directAccessGrantsEnabled: false
serviceAccountsEnabled: false
publicClient: false
authenticationFlowBindingOverrides: {}
fullScopeAllowed: true
Thank you.
