August 2019
Beginner
608 pages
16h 7m
English
We will have to define an internal URL, which is used to authenticate users:
gitlab_rails['internal_api_url'] = "http://{{ hostvars[groups['frontend'][0]]['inventory_hostname'] }}:8080"
We disable all other services on this node:
# Disable components that will not be on the GitLab application server roles ['application_role'] nginx['enable'] = false sidekiq['enable'] = false unicorn['enable'] = false
The repositories should be reachable for Git SSH:
# Gitaly gitlab_rails['gitaly_token'] = 'abc123secret' git_data_dirs({ 'default' => { 'path' => '/var/opt/gitlab/git-data','gitaly_address' => 'tcp://{{ hostvars[groups['gitaly'][0]]['inventory_hostname'] }}:8075' } }) gitlab_rails['gitaly_token'] = 'abc123secret' ...Read now
Unlock full access