Puppet module for installing, configuring and managing Docker Registry 2.0
This module is currently only for RedHat clones 6.x, 7.x and OpenSuSE:
The Docker toolset to pack, ship, store, and deliver content.
include docker_registry
class { '::docker_registry':
log_fields => {
service => 'registry',
environment => 'production'
}
,
log_hooks_mail_disabled => false,
log_hooks_mail_levels => ['panic', 'error'],
log_hooks_mail_to => '[email protected]',
filesystem_rootdirectory => '/srv/registry',
http_addr => ':1443',
http_tls => true,
}
The class support a parameter called journald_forward_enable.
This was added because of the PIPE signal that is sent to go programs when systemd-journald dies.
For more information read here: https://github.com/projectatomic/forward-journald
include ::forward_journald
Class['forward_journald'] -> Class['docker_registry']