gitlab: Add setting to enable packages feature
This commit is contained in:
parent
127245433a
commit
07c4baba07
2 changed files with 9 additions and 0 deletions
|
@ -88,6 +88,10 @@ gitlab_csp:
|
||||||
gitlab_registry:
|
gitlab_registry:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
|
# Enable the packages feature (see https://docs.gitlab.com/ee/administration/packages/index.html)
|
||||||
|
gitlab_packages:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
# IPv6 ULA config for the bridge network used by docker-ipv6-nat
|
# IPv6 ULA config for the bridge network used by docker-ipv6-nat
|
||||||
gitlab_ipv6:
|
gitlab_ipv6:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
|
@ -99,6 +99,11 @@ services:
|
||||||
gitlab_rails['incoming_email_idle_timeout'] = 60
|
gitlab_rails['incoming_email_idle_timeout'] = 60
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if gitlab_packages.enabled %}
|
||||||
|
# Gitlab packages
|
||||||
|
gitlab_rails['packages_enabled'] = true
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% if gitlab_registry.enabled %}
|
{% if gitlab_registry.enabled %}
|
||||||
# Gitlab registry
|
# Gitlab registry
|
||||||
gitlab_rails['registry_enabled'] = true
|
gitlab_rails['registry_enabled'] = true
|
||||||
|
|
Loading…
Add table
Reference in a new issue