Puppet Class: dockerinstall::registry::setup::token
- Inherits:
- dockerinstall::registry::params
- Defined in:
- manifests/registry/setup/token.pp
Summary
Registry token authentication basic setupOverview
Registry token authentication basic setup
7 8 9 10 11 12 13 14 15 16 17 |
# File 'manifests/registry/setup/token.pp', line 7
class dockerinstall::registry::setup::token (
) inherits dockerinstall::registry::params
{
include dockerinstall::setup
$tokenbundle_certdir = $dockerinstall::registry::params::tokenbundle_certdir
file { $tokenbundle_certdir:
ensure => directory,
}
}
|