gitlab installation on top of kubernetes

1/30/2019

What is the best way to deploy gitlab to kubernetes? Can I just use gitLab omnibus dockrise package? with it's internal postgreSql and redis? any problem with this approch? I prefer the empeded DB.

note: helm deployment deploy three pods: gitlab, postgreSql, and redis

-- Suleiman Abualrob
devops
gitlab
kubernetes

1 Answer

1/31/2019

I'd use the omnibus distro to get you up and running the quickest. I have a "kubernetes by examples" repository that you can pull down and just make install (see the manifests directory for what is being kubectl apply'ed) at https://github.com/mateothegreat/k8-byexamples-gitlab.

This also deploys a service using NodePort's and your gitlab service will be available at http://gitlab/.

-- yomateo
Source: StackOverflow