Skip to content
Snippets Groups Projects
Commit c1f35342 authored by Marin Jankovski's avatar Marin Jankovski
Browse files

Merge branch 'add_delete_option_for_registry' into 'master'

Add registry storage delete option

Fixes #1292

See merge request !781
parent 66c6e250
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -334,6 +334,7 @@ external_url 'GENERATED_EXTERNAL_URL'
# registry['log_directory'] = "/var/log/gitlab/registry"
# registry['log_level'] = "info"
# registry['rootcertbundle'] = "/var/opt/gitlab/registry/certificate.crt"
# registry['storage_delete_enabled'] = true
 
####################
# GitLab Workhorse #
Loading
Loading
Loading
Loading
@@ -442,8 +442,7 @@ default['gitlab']['registry']['dir'] = "/var/opt/gitlab/registry"
default['gitlab']['registry']['log_directory'] = "/var/log/gitlab/registry"
default['gitlab']['registry']['log_level'] = "info"
default['gitlab']['registry']['rootcertbundle'] = nil
default['gitlab']['registry']['storage_delete_enabled'] = true
 
####
# Nginx
Loading
Loading
Loading
Loading
@@ -9,6 +9,8 @@ storage:
blobdescriptor: inmemory
filesystem:
rootdirectory: <%= @registry_path %>
delete:
enabled: <%= @storage_delete_enabled %>
http:
addr: <%= @registry_http_addr %>
secret: "<%= @http_secret %>"
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment