diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-06-10 14:21:49 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2016-06-10 14:21:49 +0000 |
commit | 2ff359142a08af8656f5f6ed90a65e90ecec32f2 (patch) | |
tree | 9c14427f6cc0fc8c883aebec6b0d2251103e2be2 | |
parent | 747a167a2dce3175102e4aff78504c72178cc5a5 (diff) | |
parent | 0e7abb4c2851131ccc5a81e1923824ac845bbe3f (diff) | |
download | gitlab-ce-2ff359142a08af8656f5f6ed90a65e90ecec32f2.tar.gz |
Merge branch 'fix-registry-docs' into 'master'
Fix incorrect registry key value
See merge request !4595
-rw-r--r-- | config/gitlab.yml.example | 2 | ||||
-rw-r--r-- | doc/administration/container_registry.md | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example index 0510e7df597..1048ef6e243 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example @@ -181,7 +181,7 @@ production: &base # host: registry.example.com # port: 5005 # api_url: http://localhost:5000/ # internal address to the registry, will be used by GitLab to directly communicate with API - # key_path: config/registry.key + # key: config/registry.key # path: shared/registry # issuer: gitlab-issuer diff --git a/doc/administration/container_registry.md b/doc/administration/container_registry.md index caf9a5bef2c..7870669fa77 100644 --- a/doc/administration/container_registry.md +++ b/doc/administration/container_registry.md @@ -62,7 +62,7 @@ registry: host: registry.gitlab.example.com port: 5005 api_url: http://localhost:5000/ - key_path: config/registry.key + key: config/registry.key path: shared/registry issuer: gitlab-issuer ``` @@ -75,7 +75,7 @@ where: | `host` | The host URL under which the Registry will run and the users will be able to use. | | `port` | The port under which the external Registry domain will listen on. | | `api_url` | The internal API URL under which the Registry is exposed to. It defaults to `http://localhost:5000`. | -| `key_path`| The private key location that is a pair of Registry's `rootcertbundle`. Read the [token auth configuration documentation][token-config]. | +| `key` | The private key location that is a pair of Registry's `rootcertbundle`. Read the [token auth configuration documentation][token-config]. | | `path` | This should be the same directory like specified in Registry's `rootdirectory`. Read the [storage configuration documentation][storage-config]. This path needs to be readable by the GitLab user, the web-server user and the Registry user. Read more in [#container-registry-storage-path](#container-registry-storage-path). | | `issuer` | This should be the same value as configured in Registry's `issuer`. Read the [token auth configuration documentation][token-config]. | |