Disable docker-registry by default

The docker-registry package has been replaced by docker-distribution in
centos and is failing the puppet code that expect a docker-registry
service. A proper patch I89e14cc2a27299ce4c191d2a823deb0424693831 was
submitted to stable/newton and stable/ocata but was a bit too invasive
for mitaka.

Simply changing the default not to install docker-registry should make
the gate happy again.

Change-Id: I9f5599889ac3e56ba201b01340f21fc7e4051df5
This commit is contained in:
Martin André 2017-03-14 15:49:25 +01:00
parent ea15dca9c7
commit 01d40c094d
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ augeas { 'lvm.conf':
changes => 'set auto_activation_volume_list/list ""'
}
if str2bool(hiera('enable_docker_registry', true)) {
if str2bool(hiera('enable_docker_registry', false)) {
package{'docker-registry': }
augeas { 'docker-registry':
context => '/files/etc/sysconfig/docker-registry',