August 2019
Beginner
608 pages
16h 7m
English
The only entry in the gitlab.rb file is geo_primary_role. Assigning this role will install every component on the server:
roles ['geo_primary_role']We do this in order to install the license automatically as well. It should be placed in the files directory of this repository before running the Ansible script. It will copy the file to /etc/gitlab.
The following part of the Ansible script is responsible for doing this:
- name: Install license file to enable geo functionalitycopy:src: "Gitlab.gitlab-license"dest: /etc/gitlabmode: 0755
It will only work on the initial installation of GitLab. Afterward, changes to the license have to be done via the web UI. Also, if you don't have this license file in place, the installation ...
Read now
Unlock full access