debian-mirror-gitlab/doc/administration/high_availability/gitaly.md

47 lines
1.8 KiB
Markdown
Raw Normal View History

2019-07-31 22:56:46 +05:30
# Configuring Gitaly for Scaled and High Availability
Gitaly does not yet support full high availability. However, Gitaly is quite
stable and is in use on GitLab.com. Scaled and highly available GitLab environments
should consider using Gitaly on a separate node.
See the [Gitaly HA Epic](https://gitlab.com/groups/gitlab-org/-/epics/289) to
track plans and progress toward high availability support.
2019-09-04 21:01:54 +05:30
This document is relevant for [Scaled Architecture](README.md#scalable-architecture-examples)
environments and [High Availability Architecture](README.md#high-availability-architecture-examples).
2019-07-31 22:56:46 +05:30
## Running Gitaly on its own server
2019-09-04 21:01:54 +05:30
See [Running Gitaly on its own server](../gitaly/index.md#running-gitaly-on-its-own-server)
in Gitaly documentation.
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
Continue configuration of other components by going back to:
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
- [Scaled Architectures](README.md#scalable-architecture-examples)
- [High Availability Architectures](README.md#high-availability-architecture-examples)
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
## Enable Monitoring
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
> [Introduced](https://gitlab.com/gitlab-org/omnibus-gitlab/issues/3786) in GitLab 12.0.
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
1. Create/edit `/etc/gitlab/gitlab.rb` and add the following configuration:
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
```ruby
# Enable service discovery for Prometheus
consul['enable'] = true
consul['monitoring_service_discovery'] = true
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
# Replace placeholders
# Y.Y.Y.Y consul1.gitlab.example.com Z.Z.Z.Z
# with the addresses of the Consul server nodes
consul['configuration'] = {
retry_join: %w(Y.Y.Y.Y consul1.gitlab.example.com Z.Z.Z.Z),
}
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
# Set the network addresses that the exporters will listen on
node_exporter['listen_address'] = '0.0.0.0:9100'
gitaly['prometheus_listen_addr'] = "0.0.0.0:9236"
```
2019-07-31 22:56:46 +05:30
2019-09-04 21:01:54 +05:30
1. Run `sudo gitlab-ctl reconfigure` to compile the configuration.