I would like to know how one can add a custom theme to Keycloak using the Keycloak operator in Kubernetes. Without using the operator, it was as simple as adding this parameters to the chart:
keycloak:
keycloak:
extraInitContainers: |
- name: theme-provider
image: gcr.io/cldntventr/keycloak-theme:0.0.32
imagePullPolicy: IfNotPresent
command:
- sh
args:
- -c
- |
echo "Copying theme..."
cp -R /logo/* /theme
volumeMounts:
- name: theme
mountPath: /theme
But I have no idea how to achieve the same using the operator.