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

154 lines
6.9 KiB
Markdown
Raw Normal View History

2021-04-29 21:17:54 +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
# Cluster integrations (DEPRECATED) **(FREE)**
> [Deprecated](https://gitlab.com/groups/gitlab-org/configure/-/epics/8) in GitLab 14.5.
WARNING:
This feature was [deprecated](https://gitlab.com/groups/gitlab-org/configure/-/epics/8) in GitLab 14.5.
2021-04-29 21:17:54 +05:30
GitLab provides several ways to integrate applications to your
Kubernetes cluster.
To enable cluster integrations, first add a Kubernetes cluster to a GitLab
2021-06-08 01:23:25 +05:30
[project](../project/clusters/add_remove_clusters.md) or
2021-12-11 22:18:48 +05:30
[group](../group/clusters/index.md) or
2021-06-08 01:23:25 +05:30
[instance](../instance/clusters/index.md).
2021-04-29 21:17:54 +05:30
2021-09-04 01:27:46 +05:30
You can install your applications manually as shown in the following sections, or use the
[Cluster management project template](management_project_template.md) that automates the
installation.
Although, the [Cluster management project template](management_project_template.md) still
requires that you manually do the last steps of these sections,
[Enable Prometheus integration for your cluster](#enable-prometheus-integration-for-your-cluster)
or [Enable Elastic Stack integration for your cluster](#enable-elastic-stack-integration-for-your-cluster)
2021-10-27 15:23:28 +05:30
depending on which application you are installing. [An issue exists](https://gitlab.com/gitlab-org/gitlab/-/issues/326565)
to automate this step.
2021-09-04 01:27:46 +05:30
2021-12-11 22:18:48 +05:30
Prometheus and Elastic Stack cluster integrations can only be enabled for clusters [connected through cluster certificates](../project/clusters/add_existing_cluster.md).
2022-01-26 12:08:38 +05:30
To enable Prometheus for your cluster connected through the [GitLab Agent](agent/index.md), you can [integrate it manually](../project/integrations/prometheus.md#manual-configuration-of-prometheus).
2021-12-11 22:18:48 +05:30
2022-01-26 12:08:38 +05:30
There is no option to enable Elastic Stack for your cluster if it is connected with the GitLab Agent.
2021-12-11 22:18:48 +05:30
Follow this [issue](https://gitlab.com/gitlab-org/gitlab/-/issues/300230) for updates.
2021-04-29 21:17:54 +05:30
## Prometheus cluster integration
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/55244) in GitLab 13.11.
2021-12-11 22:18:48 +05:30
WARNING:
This feature was [deprecated](https://gitlab.com/groups/gitlab-org/configure/-/epics/8) in GitLab 14.5. However, you can **still use** Prometheus
for Kubernetes clusters connected to GitLab through the
2022-01-26 12:08:38 +05:30
[Agent](agent/index.md) by [enabling Prometheus manually](../project/integrations/prometheus.md#manual-configuration-of-prometheus).
2021-12-11 22:18:48 +05:30
2021-04-29 21:17:54 +05:30
You can integrate your Kubernetes cluster with
[Prometheus](https://prometheus.io/) for monitoring key metrics of your
apps directly from the GitLab UI.
2021-06-08 01:23:25 +05:30
Once enabled, you can see metrics from services available in the
2021-04-29 21:17:54 +05:30
[metrics library](../project/integrations/prometheus_library/index.md).
2021-06-08 01:23:25 +05:30
### Prometheus Prerequisites
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
To use this integration:
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
1. Prometheus must be installed in your cluster in the `gitlab-managed-apps` namespace.
2021-04-29 21:17:54 +05:30
1. The `Service` resource for Prometheus must be named `prometheus-prometheus-server`.
2021-06-08 01:23:25 +05:30
You can manage your Prometheus however you like, but as an example, you can set
it up using [Helm](https://helm.sh/) as follows:
2021-04-29 21:17:54 +05:30
```shell
2021-06-08 01:23:25 +05:30
# Create the required Kubernetes namespace
2021-04-29 21:17:54 +05:30
kubectl create ns gitlab-managed-apps
# Download Helm chart values that is compatible with the requirements above.
2021-09-04 01:27:46 +05:30
# These are included in the Cluster Management project template.
wget https://gitlab.com/gitlab-org/project-templates/cluster-management/-/raw/master/applications/prometheus/values.yaml
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
# Add the Prometheus community Helm chart repository
2021-04-29 21:17:54 +05:30
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
# Install Prometheus
helm install prometheus prometheus-community/prometheus -n gitlab-managed-apps --values values.yaml
```
Alternatively, you can use your preferred installation method to install
Prometheus as long as you meet the requirements above.
### Enable Prometheus integration for your cluster
To enable the Prometheus integration for your cluster:
1. Go to the cluster's page:
- For a [project-level cluster](../project/clusters/index.md), navigate to your project's
2021-09-04 01:27:46 +05:30
**Infrastructure > Kubernetes clusters**.
2021-04-29 21:17:54 +05:30
- For a [group-level cluster](../group/clusters/index.md), navigate to your group's
**Kubernetes** page.
2021-06-08 01:23:25 +05:30
- For an [instance-level cluster](../instance/clusters/index.md), navigate to your instance's
**Kubernetes** page.
1. Select the **Integrations** tab.
1. Check the **Enable Prometheus integration** checkbox.
1. Click **Save changes**.
1. Go to the **Health** tab to see your cluster's metrics.
## Elastic Stack cluster integration
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/61077) in GitLab 13.12.
You can integrate your cluster with [Elastic
2021-09-30 23:02:18 +05:30
Stack](https://www.elastic.co/elastic-stack/) to index and [query your pod
2021-06-08 01:23:25 +05:30
logs](../project/clusters/kubernetes_pod_logs.md).
### Elastic Stack Prerequisites
To use this integration:
1. Elasticsearch 7.x or must be installed in your cluster in the
`gitlab-managed-apps` namespace.
1. The `Service` resource must be called `elastic-stack-elasticsearch-master`
and expose the Elasticsearch API on port `9200`.
1. The logs are expected to be [Filebeat container logs](https://www.elastic.co/guide/en/beats/filebeat/7.x/filebeat-input-container.html)
following the [7.x log structure](https://www.elastic.co/guide/en/beats/filebeat/7.x/exported-fields-log.html)
and include [Kubernetes metadata](https://www.elastic.co/guide/en/beats/filebeat/7.x/add-kubernetes-metadata.html).
You can manage your Elastic Stack however you like, but as an example, you can
use [this Elastic Stack chart](https://gitlab.com/gitlab-org/charts/elastic-stack) to get up and
running:
```shell
# Create the required Kubernetes namespace
kubectl create namespace gitlab-managed-apps
# Download Helm chart values that is compatible with the requirements above.
2021-09-04 01:27:46 +05:30
# These are included in the Cluster Management project template.
wget https://gitlab.com/gitlab-org/project-templates/cluster-management/-/raw/master/applications/elastic-stack/values.yaml
2021-06-08 01:23:25 +05:30
# Add the GitLab Helm chart repository
helm repo add gitlab https://charts.gitlab.io
# Install Elastic Stack
2021-09-30 23:02:18 +05:30
helm install elastic-stack gitlab/elastic-stack -n gitlab-managed-apps --values values.yaml
2021-06-08 01:23:25 +05:30
```
### Enable Elastic Stack integration for your cluster
To enable the Elastic Stack integration for your cluster:
1. Go to the cluster's page:
- For a [project-level cluster](../project/clusters/index.md), navigate to your project's
2021-09-04 01:27:46 +05:30
**Infrastructure > Kubernetes clusters**.
2021-06-08 01:23:25 +05:30
- For a [group-level cluster](../group/clusters/index.md), navigate to your group's
**Kubernetes** page.
- For an [instance-level cluster](../instance/clusters/index.md), navigate to your instance's
**Kubernetes** page.
2021-04-29 21:17:54 +05:30
1. Select the **Integrations** tab.
2021-09-30 23:02:18 +05:30
1. Check the **Enable Elastic Stack integration** checkbox.
2021-04-29 21:17:54 +05:30
1. Click **Save changes**.
1. Go to the **Health** tab to see your cluster's metrics.