Commit a365d28f authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch 'jc-update-praefect-docs' into 'master'

Update praefect docs with virtual_storage_name and auth

See merge request gitlab-org/gitlab!18694
parents 4af35f6a 093ad996
......@@ -68,20 +68,26 @@ sidekiq['enable'] = false
gitlab_workhorse['enable'] = false
gitaly['enable'] = false
# virtual_storage_name must match the same storage name given to praefect in git_data_dirs
praefect['virtual_storage_name'] = 'praefect'
praefect['auth_token'] = 'super_secret_abc'
praefect['enable'] = true
praefect['storage_nodes'] = [
{
'storage' => 'praefect-git-1',
'address' => 'tcp://praefect-git-1.internal',
'token' => 'token1',
'primary' => true
},
{
'storage' => 'praefect-git-2',
'address' => 'tcp://praefect-git-2.internal'
'address' => 'tcp://praefect-git-2.internal',
'token' => 'token2'
},
{
'storage' => 'praefect-git-3',
'address' => 'tcp://praefect-git-3.internal'
'address' => 'tcp://praefect-git-3.internal',
'token' => 'token3'
}
]
```
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment