Manage cluster applications
DETAILS: Tier: Free, Premium, Ultimate Offering: GitLab.com, Self-managed, GitLab Dedicated
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.
NOTE:
The project template works on GitLab.com without modifications. If you're on a self-managed instance, you must modify the .gitlab-ci.yml
file.
Use one project for the agent and your manifests
If you have not yet used the agent to connect your cluster with GitLab:
- Create a project from the cluster management project template.
- Configure the project for the agent.
- In your project's settings, create an
environment variable named
$KUBE_CONTEXT
and set the value topath/to/agent-configuration-project:your-agent-name
. - Configure the files as needed.
Use separate projects for the agent and your manifests
If you have already configured the agent and connected a cluster with GitLab:
- Create a project from the cluster management project template.
- In the project where you configured your agent, grant the agent access to the new project.
- In the new project, create an
environment variable named
$KUBE_CONTEXT
and set the value topath/to/agent-configuration-project:your-agent-name
. - In the new project, configure the files as needed.
Create a project based on the cluster management project template
To create a project from the cluster management project template:
- On the left sidebar, at the top, select Create new ({plus}) and New project/repository.
- Select Create from template.
- From the list of templates, next to GitLab Cluster Management, select Use template.
- Enter the project details.
- Select Create project.
- In the new project, configure the files as needed.
Configure the project
After you use the cluster management template to create a project, you can configure:
.gitlab-ci.yml
file
The The .gitlab-ci.yml
file:
- 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 project. This image contains a set of Bash utility scripts to support Helm v3 releases.
If you are on a self-managed instance of GitLab, you must modify the .gitlab-ci.yml
file.
Specifically, the section that starts with the comment Automatic package upgrades
does not
work on a self-managed instance, because the include
refers to a GitLab.com project.
If you remove everything below this comment, the pipeline succeeds.
helmfile.yml
file
The main The template contains a Helmfile you can use to manage cluster applications with Helm v3.
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 the paths for the apps that you would like to use in your cluster.
By default, each helmfile.yaml
in these sub-paths has the attribute installed: true
. This means that, depending on the state of your cluster and Helm releases, Helmfile attempts to install or update apps every time the pipeline runs. If you change this attribute to installed: false
, Helmfile tries to uninstall this app
from your cluster. Read more about how Helmfile works.
Built-in applications
The template contains an applications
directory with a helmfile.yaml
configured for each
application in the template.
The built-in supported applications are:
Each application has an applications/{app}/values.yaml
file.
For GitLab Runner, the file is applications/{app}/values.yaml.gotmpl
.
In this file, you can define default values for your app's Helm chart. Some apps already have defaults defined.