Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am planning for an installation of Qlik Sense on Kubernetes (using GKE). I would like to know how I can customize the main logo and favicon that would be displayed to users logging in to the Qlik Hub and when viewing apps.
I have seen other answers to this question, but they seem to be specific to Windows installations. Has anyone been able to successfully control the appearance/branding of the Qlik Sense Hub using Qlik Sense on Kubernetes?
I think it is not possible to change the icon persistent at this time.
For that, it needs to be possible to refer to the new icon in the values.yaml. But I didn't find such possibilities in the helm charts.
The only solution I found, is to connect into the hub pod and change the favicon.ico located in the home directory after connect.
# get Pod name
kubectl get pods --all-namespaces |grep qliksense-hub
# get docker container id (docker://...) to connect as root
kubectl describe pod Pod-Name
# Enter Container
docker exec -u root -it CONTAINER_ID /bin/sh
BUT this not recommended! Because of the volatility of the containers this change will be lost very soon.