gitlab-org--gitlab-foss/doc/install/kubernetes/index.md

43 lines
1.9 KiB
Markdown
Raw Normal View History

---
description: 'Read through the different methods to deploy GitLab on Kubernetes.'
---
# Installing GitLab on Kubernetes
2018-12-03 12:56:25 -05:00
NOTE: **Kubernetes experience required:**
Our Helm charts are recommended for those who are familiar with Kubernetes.
If you're not sure if Kubernetes is for you, our
[Omnibus GitLab packages](../README.md#installing-gitlab-using-the-omnibus-gitlab-package-recommended)
are mature, scalable, support [high availability](../../administration/high_availability/README.md)
2018-12-03 12:56:25 -05:00
and are used today on GitLab.com.
It is not necessary to have GitLab installed on Kubernetes in order to use [GitLab Kubernetes integration](https://docs.gitlab.com/ee/user/project/clusters/index.html).
2017-09-08 00:50:30 -04:00
The easiest method to deploy GitLab on [Kubernetes](https://kubernetes.io/) is
to take advantage of GitLab's Helm charts. [Helm](https://github.com/kubernetes/helm/blob/master/README.md)
is a package management tool for Kubernetes, allowing apps to be easily managed via their
Charts. A [Chart](https://github.com/kubernetes/charts) is a detailed description
of the application including how it should be deployed, upgraded, and configured.
2017-05-09 13:33:09 -04:00
2018-06-21 11:06:01 -04:00
## GitLab Chart
2018-08-21 08:41:40 -04:00
This chart contains all the required components to get started, and can scale to
large deployments. It offers a number of benefits:
2017-08-29 14:39:06 -04:00
2018-08-21 08:41:40 -04:00
- Horizontal scaling of individual components
- No requirement for shared storage to scale
- Containers do not need `root` permissions
- Automatic SSL with Let's Encrypt
- An unprivileged GitLab Runner
2018-08-21 08:41:40 -04:00
- and plenty more.
2017-08-29 14:39:06 -04:00
2018-08-21 08:41:40 -04:00
Learn more about the [GitLab chart](gitlab_chart.md).
2017-09-01 00:29:53 -04:00
2018-06-21 11:06:01 -04:00
## GitLab Runner Chart
2017-09-30 02:28:47 -04:00
2018-08-21 08:41:40 -04:00
If you already have a GitLab instance running, inside or outside of Kubernetes,
and you'd like to leverage the Runner's
[Kubernetes capabilities](https://docs.gitlab.com/runner/executors/kubernetes.html),
it can be deployed with the GitLab Runner chart.
2017-08-28 14:18:25 -04:00
2018-06-21 11:06:01 -04:00
Learn more about [gitlab-runner chart](gitlab_runner_chart.md).