File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,23 @@ gitlab_rails['redis_sentinels_password'] = "{{ gitlab_redis_sentinel_password }}
3131gitlab_rails['monitoring_whitelist'] = ["{{ gitlab_ip_range }}"]
3232
3333{% if gitlab_use_internal_gitaly %}
34- git_data_dirs({"default" => {"path" => "{{ gitlab_git_data_dir }}"} })
34+ gitaly['configuration'] = {
35+ "storage": [
36+ {
37+ "name": "default",
38+ "path": "{{ (gitlab_git_data_dir, 'repositories') | path_join }}",
39+ },
40+ ],
41+ }
3542{% else %}
3643gitaly['enable'] = false
3744gitlab_rails['gitaly_token'] = "{{ gitlab_gitaly_token }}"
3845gitlab_shell['secret_token'] = "{{ gitlab_secret_token }}"
39- git_data_dirs({
40- 'default' => { 'gitaly_address' => 'tcp://{{ gitlab_gitaly_instance_ip }}:{{ gitlab_gitaly_instance_port }}' },
41- })
46+ gitlab_rails['repositories_storages'] = {
47+ "default" => {
48+ "gitaly_address" => "tcp://{{ gitlab_gitaly_instance_ip }}:{{ gitlab_gitaly_instance_port }}"
49+ }
50+ }
4251{% endif %}
4352
4453gitlab_rails['gitlab_email_enabled'] = {{ gitlab_email_enabled }}
You can’t perform that action at this time.
0 commit comments