Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
brian1
Contributor II
Contributor II

How can I customize the favicon and main Icon using Qlik Sense on Kubernetes?

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? 

Labels (1)
1 Reply
kduchrow
Partner - Contributor II
Partner - Contributor II

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.