Commit 80131a37 authored by João Cunha's avatar João Cunha

Improve docs on installing KAS

- Fosters the use of Helm v3 instead of v2
- Removes suggestions of non-existent flag --set name
parent 8b58cc39
...@@ -87,18 +87,19 @@ gitlab_kas['enable'] = true ...@@ -87,18 +87,19 @@ gitlab_kas['enable'] = true
1. [Reconfigure GitLab](../../../administration/restart_gitlab.md#omnibus-gitlab-reconfigure). 1. [Reconfigure GitLab](../../../administration/restart_gitlab.md#omnibus-gitlab-reconfigure).
When installing or upgrading the GitLab Helm chart, consider the following Helm 2 example. When installing or upgrading the GitLab Helm chart, consider the following Helm v3 example.
(If you're using Helm 3, you must modify this example.) You must set `global.kas.enabled=true` If you're using Helm v2, you must modify this example. See our [notes regarding deploy with Helm](https://docs.gitlab.com/charts/installation/deployment.html#deploy-using-helm).
for the KAS to be properly installed and configured:
You must set `global.kas.enabled=true` for the KAS to be properly installed and configured:
```shell ```shell
helm repo add gitlab https://charts.gitlab.io/
helm repo update helm repo update
helm upgrade --force --install gitlab gitlab/gitlab \ helm upgrade --install gitlab gitlab/gitlab \
--timeout 600 \ --timeout 600s \
--set global.hosts.domain=<YOUR_DOMAIN> \ --set global.hosts.domain=<YOUR_DOMAIN> \
--set global.hosts.externalIP=<YOUR_IP> \ --set global.hosts.externalIP=<YOUR_IP> \
--set certmanager-issuer.email=<YOUR_EMAIL> \ --set certmanager-issuer.email=<YOUR_EMAIL> \
--set name=gitlab-instance \
--set global.kas.enabled=true --set global.kas.enabled=true
``` ```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment