I have successfully deployed a gitlab instance into my GCP cluster using the helm
installation as shown below.
upgrade_install_line="gitlab gitlab/gitlab \
--timeout 600s \
--namespace ${helm_namespace} \
--set global.hosts.domain=${hosts_domain} \
--set global.hosts.externalIP=${static_ip} \
....
etc
I would like to add Single Sign On to this instance using keycloak, Is there a way to add keycloak authentication to this installation. I am also attempting to add omniauth like this --set global.omniauth.enabled= true
but not sure if it'll work.
What is the best way to achieve this, using helm.