Version information
released Jul 13th 2016
This version is compatible with:
- Puppet Enterprise 3.x
- Puppet >=3.4.0 <5.0.0
- , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'cristifalcas-docker_registry', '2.5.0'
Learn more about managing modules with a PuppetfileDocumentation
cristifalcas/docker_registry — version 2.5.0 Jul 13th 2016
docker_registry
Puppet module for installing, configuring and managing Docker Registry 2.0
Support
This module is currently only for RedHat clones 6.x, 7.x and OpenSuSE:
The Docker toolset to pack, ship, store, and deliver content.
Usage:
include docker_registry
Use tls (it will use puppet certificates) and enable email hooks:
class { '::docker_registry':
log_fields => {
service => 'registry',
environment => 'production'
}
,
log_hooks_mail_disabled => false,
log_hooks_mail_levels => ['panic', 'error'],
log_hooks_mail_to => 'docker_registry@company.com',
filesystem_rootdirectory => '/srv/registry',
http_addr => ':1443',
http_tls => true,
}
Journald forward:
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
Usage:
include ::forward_journald
Class['forward_journald'] -> Class['docker_registry']
Dependencies
- puppetlabs/stdlib (4.x)
Copyright (C) 2014 R. Tyler Croy <tyler@monkeypox.org> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.