Puppet Class: psick::bolt

Defined in:
manifests/bolt.pp

Overview

Parameters:

  • ensure (Variant[Boolean,String]) (defaults to: present)
  • master_class (String) (defaults to: '::psick::bolt::master')
  • node_class (String) (defaults to: '::psick::bolt::node')
  • bolt_user (String) (defaults to: 'bolt')
  • bolt_user_pub_key (Optional[String]) (defaults to: undef)
  • bolt_user_priv_key (Optional[String]) (defaults to: undef)
  • ssh_user (String) (defaults to: 'root')
  • master (String) (defaults to: '')
  • keyshare_method (Optional[Enum['storeconfigs','static']]) (defaults to: 'storeconfigs')
  • auto_prereq (Boolean) (defaults to: $::psick::auto_prereq)
  • is_master (Boolean) (defaults to: false)
  • is_node (Boolean) (defaults to: true)
  • projects_hash (Hash) (defaults to: {})


3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'manifests/bolt.pp', line 3

class psick::bolt (

  Variant[Boolean,String] $ensure          = present,

  String                  $master_class    = '::psick::bolt::master',
  String                  $node_class      = '::psick::bolt::node',

  String                  $bolt_user          = 'bolt',
  Optional[String]        $bolt_user_pub_key  = undef,
  Optional[String]        $bolt_user_priv_key = undef,

  String                  $ssh_user           = 'root',

  String                  $master             = '',
  Optional[Enum['storeconfigs','static']] $keyshare_method = 'storeconfigs',

  Boolean                 $auto_prereq        = $::psick::auto_prereq,

  Boolean                 $is_master          = false,
  Boolean                 $is_node            = true,

  Hash                    $projects_hash      = {},

) {

  if $is_node {
    contain $node_class
  }

  if $is_master {
    contain $master_class
  }

  $projects_hash.each | $k,$v | {
    psick::bolt::project { $k:
      * => $v,
    }
  }

}