Commit 2979c705 authored by Evan Read's avatar Evan Read

Improve Gitaly Cluster documentation

parent babc2fe7
...@@ -227,6 +227,9 @@ with secure tokens as you complete the setup process. ...@@ -227,6 +227,9 @@ with secure tokens as you complete the setup process.
We note in the instructions below where these secrets are required. We note in the instructions below where these secrets are required.
NOTE:
Omnibus GitLab installations can use `gitlab-secrets.json`.
### PostgreSQL ### PostgreSQL
NOTE: NOTE:
...@@ -236,10 +239,11 @@ database on the same PostgreSQL server if using ...@@ -236,10 +239,11 @@ database on the same PostgreSQL server if using
of GitLab and should not be replicated. of GitLab and should not be replicated.
These instructions help set up a single PostgreSQL database, which creates a single point of These instructions help set up a single PostgreSQL database, which creates a single point of
failure. For greater fault tolerance, the following options are available: failure. The following options are available:
- For non-Geo installations, use one of the fault-tolerant - For non-Geo installations, either:
[PostgreSQL setups](../postgresql/index.md). - Use one of the documented [PostgreSQL setups](../postgresql/index.md).
- Use your own third-party database setup, if fault tolerance is required.
- For Geo instances, either: - For Geo instances, either:
- Set up a separate [PostgreSQL instance](https://www.postgresql.org/docs/11/high-availability.html). - Set up a separate [PostgreSQL instance](https://www.postgresql.org/docs/11/high-availability.html).
- Use a cloud-managed PostgreSQL service. AWS - Use a cloud-managed PostgreSQL service. AWS
...@@ -755,14 +759,26 @@ documentation](configure_gitaly.md#configure-gitaly-servers). ...@@ -755,14 +759,26 @@ documentation](configure_gitaly.md#configure-gitaly-servers).
gitaly['auth_token'] = 'PRAEFECT_INTERNAL_TOKEN' gitaly['auth_token'] = 'PRAEFECT_INTERNAL_TOKEN'
``` ```
1. Configure the GitLab Shell `secret_token`, and `internal_api_url` which are 1. Configure the GitLab Shell secret token, which is needed for `git push` operations. Either:
needed for `git push` operations.
- Method 1:
If you have already configured [Gitaly on its own server](index.md) 1. Copy `/etc/gitlab/gitlab-secrets.json` from the Gitaly client to same path on the Gitaly
servers and any other Gitaly clients.
1. [Reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure) on Gitaly servers.
- Method 2:
1. Edit `/etc/gitlab/gitlab.rb`.
1. Replace `GITLAB_SHELL_SECRET_TOKEN` with the real secret.
```ruby ```ruby
gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN' gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN'
```
1. Configure and `internal_api_url`, which is also needed for `git push` operations:
```ruby
# Configure the gitlab-shell API callback URL. Without this, `git push` will # Configure the gitlab-shell API callback URL. Without this, `git push` will
# fail. This can be your front door GitLab URL or an internal load balancer. # fail. This can be your front door GitLab URL or an internal load balancer.
# Examples: 'https://gitlab.example.com', 'http://1.2.3.4' # Examples: 'https://gitlab.example.com', 'http://1.2.3.4'
...@@ -914,11 +930,19 @@ Particular attention should be shown to: ...@@ -914,11 +930,19 @@ Particular attention should be shown to:
}) })
``` ```
1. Configure the `gitlab_shell['secret_token']` so that callbacks from Gitaly 1. Configure the GitLab Shell secret token so that callbacks from Gitaly nodes during a `git push`
nodes during a `git push` are properly authenticated by editing are properly authenticated. Either:
`/etc/gitlab/gitlab.rb`:
- Method 1:
1. Copy `/etc/gitlab/gitlab-secrets.json` from the Gitaly client to same path on the Gitaly
servers and any other Gitaly clients.
1. [Reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure) on Gitaly servers.
- Method 2:
You need to replace `GITLAB_SHELL_SECRET_TOKEN` with the real secret. 1. Edit `/etc/gitlab/gitlab.rb`.
1. Replace `GITLAB_SHELL_SECRET_TOKEN` with the real secret.
```ruby ```ruby
gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN' gitlab_shell['secret_token'] = 'GITLAB_SHELL_SECRET_TOKEN'
......
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