From f626d89eef80e68d0b64b290d3e73f4fe686f181 Mon Sep 17 00:00:00 2001 From: Achilleas Pipinellis Date: Fri, 30 Jun 2023 11:46:30 +0200 Subject: [PATCH] Make the production-ready deployments a first class citizen Instead of documenting by default the easy, one-liner deployment method, make it so that a production-ready deployment is the default option. --- doc/index.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/index.md b/doc/index.md index 44b86ac748..d34365c4c6 100644 --- a/doc/index.md +++ b/doc/index.md @@ -13,6 +13,12 @@ DETAILS: To install a cloud-native version of GitLab, use the GitLab Helm chart. This chart contains all the required components to get started and can scale to large deployments. +For a production deployment, you should have strong working knowledge of Kubernetes. +This method of deployment has different management, observability, and concepts than traditional deployments. + +The GitLab Helm chart is made up of multiple [subcharts](charts/gitlab/index.md), +each of which can be installed separately. + For OpenShift-based installations, use [GitLab Operator](https://docs.gitlab.com/operator/), otherwise you'll have to update the [security context constraints](https://docs.gitlab.com/operator/security_context_constraints.html) yourself. @@ -23,12 +29,6 @@ The default values will create an implementation where _all_ GitLab services are deployed in the cluster, which is **not suitable for production workloads**. For production deployments, you **must** follow the [Cloud Native Hybrid reference architectures](installation/index.md#use-the-reference-architectures). -For a production deployment, you should have strong working knowledge of Kubernetes. -This method of deployment has different management, observability, and concepts than traditional deployments. - -The GitLab Helm chart is made up of multiple [subcharts](charts/gitlab/index.md), -each of which can be installed separately. - ## Learn more - [Test the GitLab chart on GKE or EKS](quickstart/index.md) -- GitLab