-
Hi, Also, microcks realm that can be found here, is for an older version of the keycloak (10.0.1) and import fails. Is there a newer version that can be imported to Keycloak. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @prmitic, The documentation is here: https://microcks.io/documentation/references/configuration/security-config/#reusing-an-existing-keycloak with principles being introduced here: https://microcks.io/documentation/explanations/deployment-options/#2-partially-managed You can check this sample of the CRD: https://github.com/microcks/microcks-ansible-operator/blob/master/deploy/samples/openshift-features-ext-sso.yaml that relies on an external Keycloak instance. Basically, you just set the The Keyclaok realms definition (full or addon) to use are located here: https://github.com/microcks/microcks/tree/master/install. They still referenced older version but are working correctly. Hope it helps, |
Beta Was this translation helpful? Give feedback.
Hi @prmitic,
The documentation is here: https://microcks.io/documentation/references/configuration/security-config/#reusing-an-existing-keycloak with principles being introduced here: https://microcks.io/documentation/explanations/deployment-options/#2-partially-managed
You can check this sample of the CRD: https://github.com/microcks/microcks-ansible-operator/blob/master/deploy/samples/openshift-features-ext-sso.yaml that relies on an external Keycloak instance. Basically, you just set the
install: false
and provide aurl
andprivateUrl
for back-channel communication.The Keyclaok realms definition (full or addon) to use are located here: https://github.com/microcks/microcks/tree/master/…