summaryrefslogtreecommitdiff
path: root/doc/administration/packages
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-08 09:07:53 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-08 09:07:53 +0000
commita821bd6ad17e304ca93838a411410a44ee9cff9f (patch)
tree5444ab20a2f8b22db736a93c5c376928dde8e450 /doc/administration/packages
parentf6e985dba4d0f5b1ede95e9174d30dd6a8bedf0d (diff)
downloadgitlab-ce-a821bd6ad17e304ca93838a411410a44ee9cff9f.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/packages')
-rw-r--r--doc/administration/packages/container_registry.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/administration/packages/container_registry.md b/doc/administration/packages/container_registry.md
index 2e97849eda2..0c6caed4e55 100644
--- a/doc/administration/packages/container_registry.md
+++ b/doc/administration/packages/container_registry.md
@@ -398,6 +398,9 @@ To configure the `s3` storage driver in Omnibus:
1. Save the file and [reconfigure GitLab](../restart_gitlab.md#omnibus-gitlab-reconfigure) for the changes to take effect.
+NOTE: **Note:**
+`your-s3-bucket` should only be the name of a bucket that exists, and can't include subdirectories.
+
**Installations from source**
Configuring the storage driver is done in your registry config YML file created
@@ -408,9 +411,9 @@ when you [deployed your docker registry](https://docs.docker.com/registry/deploy
```yml
storage:
s3:
- accesskey: 'AKIAKIAKI'
- secretkey: 'secret123'
- bucket: 'gitlab-registry-bucket-AKIAKIAKI'
+ accesskey: 's3-access-key'
+ secretkey: 's3-secret-key-for-access-key'
+ bucket: 'your-s3-bucket'
region: 'your-s3-region'
regionendpoint: 'your-s3-regionendpoint'
cache:
@@ -419,6 +422,9 @@ storage:
enabled: true
```
+NOTE: **Note:**
+`your-s3-bucket` should only be the name of a bucket that exists, and can't include subdirectories.
+
## Change the registry's internal port
NOTE: **Note:**