debian-mirror-gitlab/doc/user/clusters/management_project_template.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
5.5 KiB
Markdown
Raw Normal View History

2021-09-04 01:27:46 +05:30
---
stage: Configure
group: Configure
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
---
2021-12-11 22:18:48 +05:30
# Manage cluster applications **(FREE)**
2021-09-04 01:27:46 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/25318) in GitLab 12.10 with Helmfile support via Helm v2.
2021-11-11 11:23:49 +05:30
> - Helm v2 support was [dropped](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/63577) in GitLab 14.0. Use Helm v3 instead.
2022-05-07 20:08:51 +05:30
> - [Migrated](https://gitlab.com/gitlab-org/project-templates/cluster-management/-/merge_requests/24) to the GitLab agent in GitLab 14.5.
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
GitLab provides a cluster management project template, which you use
to create a project. The project includes cluster applications that integrate with GitLab
and extend GitLab functionality. You can use the pattern shown in the project to extend
your custom cluster applications.
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
## Use one project for the agent and your manifests
2021-12-11 22:18:48 +05:30
2022-05-07 20:08:51 +05:30
If you **have not yet** used the agent to connect your cluster with GitLab:
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
1. [Create a project from the cluster management project template](#create-a-project-based-on-the-cluster-management-project-template).
1. [Configure the project for the agent](agent/install/index.md).
1. In your project's settings, create an
[environment variable](../../ci/variables/index.md#add-a-cicd-variable-to-a-project) named `$KUBE_CONTEXT`
and set the value to `path/to/agent-configuration-project:your-agent-name`.
1. [Configure the files](#configure-the-project) as needed.
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
## Use separate projects for the agent and your manifests
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
If you have already configured the agent and connected a cluster with GitLab:
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
1. [Create a project from the cluster management project template](#create-a-project-based-on-the-cluster-management-project-template).
1. In the project where you configured your agent,
2022-07-16 23:28:13 +05:30
[grant the agent access to the new project](agent/ci_cd_workflow.md#authorize-the-agent).
2022-05-07 20:08:51 +05:30
1. In the new project, create an
[environment variable](../../ci/variables/index.md#add-a-cicd-variable-to-a-project) named `$KUBE_CONTEXT`
and set the value to `path/to/agent-configuration-project:your-agent-name`.
1. In the new project, [configure the files](#configure-the-project) as needed.
2021-12-11 22:18:48 +05:30
2022-05-07 20:08:51 +05:30
## Create a project based on the cluster management project template
2021-12-11 22:18:48 +05:30
2022-05-07 20:08:51 +05:30
To create a project from the cluster management project template:
2021-12-11 22:18:48 +05:30
2022-05-07 20:08:51 +05:30
1. On the top bar, select **Menu > Projects > Create new project**.
1. Select **Create from template**.
1. From the list of templates, next to **GitLab Cluster Management**, select **Use template**.
1. Enter the project details.
1. Select **Create project**.
2021-12-11 22:18:48 +05:30
2022-05-07 20:08:51 +05:30
If you use self-managed GitLab, your instance might not include the latest version of the template.
In that case, select **Import project**, **Repo by URL** and for the **Git repository URL**, enter
`https://gitlab.com/gitlab-org/project-templates/cluster-management.git`.
2021-12-11 22:18:48 +05:30
2022-05-07 20:08:51 +05:30
## Configure the project
2021-12-11 22:18:48 +05:30
2022-05-07 20:08:51 +05:30
After you use the cluster management template to create a project, you can configure:
2021-11-11 11:23:49 +05:30
2021-12-11 22:18:48 +05:30
- [The `.gitlab-ci.yml` file](#the-gitlab-ciyml-file).
- [The main `helmfile.yml` file](#the-main-helmfileyml-file).
- [The directory with built-in applications](#built-in-applications).
2021-11-11 11:23:49 +05:30
### The `.gitlab-ci.yml` file
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
The `.gitlab-ci.yml` file:
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
- Ensures you are on Helm version 3.
- Deploys the enabled applications from the project.
You can edit and extend the pipeline definitions.
The base image used in the pipeline is built by the
[cluster-applications](https://gitlab.com/gitlab-org/cluster-integration/cluster-applications) project.
This image contains a set of Bash utility scripts to support [Helm v3 releases](https://helm.sh/docs/intro/using_helm/#three-big-concepts).
2021-09-04 01:27:46 +05:30
2021-11-11 11:23:49 +05:30
### The main `helmfile.yml` file
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
The template contains a [Helmfile](https://github.com/roboll/helmfile) you can use to manage
cluster applications with [Helm v3](https://helm.sh/).
2022-07-16 23:28:13 +05:30
This file has a list of paths to other Helm files for each app. They're all commented out by default, so you must uncomment
2021-11-11 11:23:49 +05:30
the paths for the apps that you would like to use in your cluster.
2021-09-04 01:27:46 +05:30
2021-11-11 11:23:49 +05:30
By default, each `helmfile.yaml` in these sub-paths has the attribute `installed: true`. This means that every time
2021-10-27 15:23:28 +05:30
the pipeline runs, Helmfile tries to either install or update your apps according to the current state of your
cluster and Helm releases. If you change this attribute to `installed: false`, Helmfile tries try to uninstall this app
2021-09-04 01:27:46 +05:30
from your cluster. [Read more](https://github.com/roboll/helmfile) about how Helmfile works.
2021-11-11 11:23:49 +05:30
### Built-in applications
2021-09-04 01:27:46 +05:30
2022-05-07 20:08:51 +05:30
The template contains an `applications` directory with a `helmfile.yaml` configured for each
application in the template.
2021-09-04 01:27:46 +05:30
The [built-in supported applications](https://gitlab.com/gitlab-org/project-templates/cluster-management/-/tree/master/applications) are:
2021-10-27 15:23:28 +05:30
- [Cert-manager](../infrastructure/clusters/manage/management_project_applications/certmanager.md)
- [GitLab Runner](../infrastructure/clusters/manage/management_project_applications/runner.md)
- [Ingress](../infrastructure/clusters/manage/management_project_applications/ingress.md)
- [Prometheus](../infrastructure/clusters/manage/management_project_applications/prometheus.md)
- [Sentry](../infrastructure/clusters/manage/management_project_applications/sentry.md)
- [Vault](../infrastructure/clusters/manage/management_project_applications/vault.md)
2021-11-18 22:05:49 +05:30
2022-05-07 20:08:51 +05:30
Each application has an `applications/{app}/values.yaml` file.
For GitLab Runner, the file is `applications/{app}/values.yaml.gotmpl`.
2021-11-18 22:05:49 +05:30
2022-05-07 20:08:51 +05:30
In this file, you can define default values for your app's Helm chart.
Some apps already have defaults defined.