File tree 1 file changed +13
-4
lines changed
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 }}
31
31
gitlab_rails['monitoring_whitelist'] = ["{{ gitlab_ip_range }}"]
32
32
33
33
{% 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
+ }
35
42
{% else %}
36
43
gitaly['enable'] = false
37
44
gitlab_rails['gitaly_token'] = "{{ gitlab_gitaly_token }}"
38
45
gitlab_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
+ }
42
51
{% endif %}
43
52
44
53
gitlab_rails['gitlab_email_enabled'] = {{ gitlab_email_enabled }}
You can’t perform that action at this time.
0 commit comments