Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
2a0f98fe
Commit
2a0f98fe
authored
May 19, 2021
by
Cody West
Committed by
Nick Gaskill
May 19, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docs - Add path_style explanation to Registry object storage config
parent
57422633
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
doc/administration/packages/container_registry.md
doc/administration/packages/container_registry.md
+20
-1
No files found.
doc/administration/packages/container_registry.md
View file @
2a0f98fe
...
...
@@ -417,8 +417,27 @@ To configure the `s3` storage driver in Omnibus:
}
```
-
`regionendpoint`
is only required when configuring an S3 compatible service such as MinIO. It takes a URL such as
`http://127.0.0.1:9000`
.
If using with an
[
AWS S3 VPC endpoint
](
https://docs.aws.amazon.com/vpc/latest/privatelink/vpc-endpoints-s3.html
)
,
then set
`regionendpoint`
to your VPC endpoint address and set
`path_style`
to false:
```
ruby
registry
[
'storage'
]
=
{
's3'
=>
{
'accesskey'
=>
's3-access-key'
,
'secretkey'
=>
's3-secret-key-for-access-key'
,
'bucket'
=>
'your-s3-bucket'
,
'region'
=>
'your-s3-region'
,
'regionendpoint'
=>
'your-s3-vpc-endpoint'
,
'path_style'
=>
false
}
}
```
-
`regionendpoint`
is only required when configuring an S3 compatible service such as MinIO, or
when using an AWS S3 VPC Endpoint.
-
`your-s3-bucket`
should be the name of a bucket that exists, and can't include subdirectories.
-
`path_style`
should be set to true to use
`host/bucket_name/object`
style paths instead of
`bucket_name.host/object`
.
[
Set to false for AWS S3
](
https://aws.amazon.com/blogs/aws/amazon-s3-path-deprecation-plan-the-rest-of-the-story/
)
.
1.
Save the file and
[
reconfigure GitLab
](
../restart_gitlab.md#omnibus-gitlab-reconfigure
)
for the changes to take effect.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment