Puppet Class: dockerinstall::registry::setup::token

Inherits:
dockerinstall::registry::params
Defined in:
manifests/registry/setup/token.pp

Summary

Registry token authentication basic setup

Overview

Registry token authentication basic setup

Examples:

include dockerinstall::registry::setup::token


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,
  }
}