Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.rb « etc-gitlab « gitaly2 « test-cluster « _support - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11b527ee1e1a89fc76ba3025ee6aac522cff2dc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
gitaly['enable'] = true
gitaly['listen_addr'] = ':6667'

# This instance will be serving the 'gitaly2' repository storage
git_data_dirs({
  'gitaly2' => { 'path' => '/var/opt/gitlab/git-data-2' }
})

# Disable as many Omnibus services as we can
unicorn['enable'] = false
sidekiq['enable'] = false
gitlab_workhorse['enable'] = false
gitlab_monitor['enable'] = false
prometheus_monitoring['enable'] = false
redis['enable'] = false
postgresql['enable']=false
nginx['enable'] = false

# We need these settings to prevent Omnibus from erroring out because
# Postgres/Redis are unavailable
gitlab_rails['rake_cache_clear'] = false
gitlab_rails['auto_migrate'] = false

# Use the remote internal API
gitlab_rails['internal_api_url'] = 'http://app1:80'

# We have to use the same token in all hosts for internal API authentication
gitlab_shell['secret_token'] = 'f4kef1xedt0ken'