-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bitnami/Keycloak Custom Themes #24302
Comments
Hi, any news for this? |
Hi, it looks like your approach is correct, according to https://github.com/bitnami/containers/tree/main/bitnami/keycloak#adding-custom-themes, right? Did you check the Keycloak docs regarding themes? Are you missing any steps? |
This Issue has been automatically marked as "stale" because it has not had recent activity (for 15 days). It will be closed if no further activity occurs. Thanks for the feedback. |
Due to the lack of activity in the last 5 days since it was marked as "stale", we proceed to close this Issue. Do not hesitate to reopen it later if necessary. |
I have the same problem, how did you solve it? We have a theme that is working with the chart version 18.5.0. extraVolumes:
- name: theme
emptyDir: {}
extraVolumeMounts:
- name: theme
mountPath: /opt/themes_temp
initContainers:
- name: theme-provider
image: XXXXXXXXXXXXXXXXXXXXX/keycloak/theme:v0.x.x
imagePullPolicy: Always
volumeMounts:
- name: theme
mountPath: /deployments
initdbScripts:
my_init_script.sh: |
#!/bin/bash
cp /opt/themes_temp/newtheme.jar /opt/bitnami/keycloak/providers/ After upgrading to chart version 24.0.0, it fails because we get an error due to the filesystem being read-only. We tried to mount it in the /opt/bitnami/keycloak/themes/newtheme folder (as the docs suggest): extraVolumes:
- name: theme
emptyDir: {}
extraVolumeMounts:
- name: theme
mountPath: /opt/bitnami/keycloak/providers/myautomatictv/
initContainers:
- name: theme-provider
image: XXXXXXXXXXXXXXXXXXXXXXXXXXXX/keycloak/theme:0.X.X
imagePullPolicy: Always
volumeMounts:
- name: theme
mountPath: /deployments The folder and the jar theme file are present: $ find
.
./README.md
./newtheme
./newtheme/newtheme.jar but the theme does not appear in the realm setting -> theme tab. At keycloak startup there are no line logs entries indicating anything about the theme. Any idea how can I fix this? Thank you!! |
Name and Version
bitnami/keycloak 19.2.0
What architecture are you using?
amd64
What steps will reproduce the bug?
Hi,
We deploy Keycloak via the Helm charts bitnami/keycloak.
We would like to upload and use a custom theme for the login page, as well as for the different realms.
What we have done so far is to create a pv.yaml file and a pvc.yaml and include it via extraVolumes and extraVolumeMounts with the folder /opt/bitnami/keycloak/themes.
We can see the custom themes folder in the container from the filesystem, but unfortunately, we cannot see the themes under "Themes" in the web interface.
Are we doing something wrong? Is it possible to use custom themes with the bitnami/keycloak chart?
Thank you in advance!
Regards,
Ilias
Are you using any custom parameters or values?
What do you see instead?
I didn't get an error but I can not see the themes under "Themes"
The text was updated successfully, but these errors were encountered: