Commit cbbcd903 authored by Sean McGivern's avatar Sean McGivern

Merge branch 'gitaly-doc-standalone-server' into 'master'

Add omnibus setting examples for standalone gitaly server

See merge request gitlab-org/gitlab-ce!21049
parents 0fe18ee0 8c569f92
...@@ -63,7 +63,7 @@ Gitaly network traffic is unencrypted so you should use a firewall to ...@@ -63,7 +63,7 @@ Gitaly network traffic is unencrypted so you should use a firewall to
restrict access to your Gitaly server. restrict access to your Gitaly server.
Below we describe how to configure a Gitaly server at address Below we describe how to configure a Gitaly server at address
`gitaly.internal:9999` with secret token `abc123secret`. We assume `gitaly.internal:8075` with secret token `abc123secret`. We assume
your GitLab installation has two repository storages, `default` and your GitLab installation has two repository storages, `default` and
`storage1`. `storage1`.
...@@ -108,8 +108,30 @@ Omnibus installations: ...@@ -108,8 +108,30 @@ Omnibus installations:
```ruby ```ruby
# /etc/gitlab/gitlab.rb # /etc/gitlab/gitlab.rb
gitaly['listen_addr'] = '0.0.0.0:9999'
# Avoid running unnecessary services on the gitaly server
postgresql['enable'] = false
redis['enable'] = false
nginx['enable'] = false
prometheus['enable'] = false
unicorn['enable'] = false
sidekiq['enable'] = false
gitlab_workhorse['enable'] = false
# Prevent database connections during 'gitlab-ctl reconfigure'
gitlab_rails['rake_cache_clear'] = false
gitlab_rails['auto_migrate'] = false
# 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.
gitlab_rails['internal_api_url'] = 'https://gitlab.example.com'
# Make Gitaly accept connections on all network interfaces. You must use
# firewalls to restrict access to this address/port.
gitaly['listen_addr'] = "0.0.0.0:8075"
gitaly['auth_token'] = 'abc123secret' gitaly['auth_token'] = 'abc123secret'
gitaly['storage'] = [ gitaly['storage'] = [
{ 'name' => 'default', 'path' => '/path/to/default/repositories' }, { 'name' => 'default', 'path' => '/path/to/default/repositories' },
{ 'name' => 'storage1', 'path' => '/path/to/storage1/repositories' }, { 'name' => 'storage1', 'path' => '/path/to/storage1/repositories' },
...@@ -120,7 +142,7 @@ Source installations: ...@@ -120,7 +142,7 @@ Source installations:
```toml ```toml
# /home/git/gitaly/config.toml # /home/git/gitaly/config.toml
listen_addr = '0.0.0.0:9999' listen_addr = '0.0.0.0:8075'
[auth] [auth]
token = 'abc123secret' token = 'abc123secret'
...@@ -146,7 +168,7 @@ server from reaching the Gitaly server then all Gitaly requests will ...@@ -146,7 +168,7 @@ server from reaching the Gitaly server then all Gitaly requests will
fail. fail.
We assume that your Gitaly server can be reached at We assume that your Gitaly server can be reached at
`gitaly.internal:9999` from your GitLab server, and that your GitLab `gitaly.internal:8075` from your GitLab server, and that your GitLab
NFS shares are mounted at `/mnt/gitlab/default` and NFS shares are mounted at `/mnt/gitlab/default` and
`/mnt/gitlab/storage1` respectively. `/mnt/gitlab/storage1` respectively.
...@@ -155,8 +177,8 @@ Omnibus installations: ...@@ -155,8 +177,8 @@ Omnibus installations:
```ruby ```ruby
# /etc/gitlab/gitlab.rb # /etc/gitlab/gitlab.rb
git_data_dirs({ git_data_dirs({
'default' => { 'path' => '/mnt/gitlab/default', 'gitaly_address' => 'tcp://gitlab.internal:9999' }, 'default' => { 'path' => '/mnt/gitlab/default', 'gitaly_address' => 'tcp://gitaly.internal:8075' },
'storage1' => { 'path' => '/mnt/gitlab/storage1', 'gitaly_address' => 'tcp://gitlab.internal:9999' }, 'storage1' => { 'path' => '/mnt/gitlab/storage1', 'gitaly_address' => 'tcp://gitaly.internal:8075' },
}) })
gitlab_rails['gitaly_token'] = 'abc123secret' gitlab_rails['gitaly_token'] = 'abc123secret'
...@@ -171,10 +193,10 @@ gitlab: ...@@ -171,10 +193,10 @@ gitlab:
storages: storages:
default: default:
path: /mnt/gitlab/default/repositories path: /mnt/gitlab/default/repositories
gitaly_address: tcp://gitlab.internal:9999 gitaly_address: tcp://gitaly.internal:8075
storage1: storage1:
path: /mnt/gitlab/storage1/repositories path: /mnt/gitlab/storage1/repositories
gitaly_address: tcp://gitlab.internal:9999 gitaly_address: tcp://gitaly.internal:8075
gitaly: gitaly:
token: 'abc123secret' token: 'abc123secret'
......
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