Configuring Keycloak #217
-
Hello, I'm currently trying to run TheIA-Cloud on K8S on premise, I finally were able to make it work, but after trying to enable Keycloak option it starts to fail. In the docs is not clear what is the minimal configuration expected before modifying the helm chart. I would like to know which pre-steps are required before enabling Keycloak Should I install it by my own? Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, did you have a look at our Terraform charts? https://github.com/eclipsesource/theia-cloud/blob/main/terraform/terraform.md I think based on the our existing terraform charts, you should be able to create a setup for your on premise cluster. The The Regarding the Prerequisites: Regarding keycloak.js. We use this in our example landing-pages (e.g. https://github.com/eclipsesource/theia-cloud/blob/f6ce7317643f2121cfbc430b93d913e5d0ad8bf2/node/try-now-page/src/App.tsx#L80) to authenticate a user and make authenticated calls to the Rest API. |
Beta Was this translation helpful? Give feedback.
Hi,
did you have a look at our Terraform charts? https://github.com/eclipsesource/theia-cloud/blob/main/terraform/terraform.md
With these charts we automate the whole infrastructure setup, including installing and configuring all dependencies, in a reproducible way.
I would suggest to have a look at Terraform because it really makes maintaining infrastructure a lot easier, especially when you have to change existing infrastructure later on.
I think based on the our existing terraform charts, you should be able to create a setup for your on premise cluster.
In the
terraform/modules
directory we have reusable components.The
cluster_creation
subdirectory has charts to set up a Minikube or G…