Puppet Class: kickstack::params

Inherited by:
kickstack
Defined in:
manifests/params.pp

Overview



1
2
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'manifests/params.pp', line 1

class kickstack::params {
  $variable_prefix = "kickstack_"

  # The fact prefix to be used for exportfact:
  # * default "kickstack_"
  # * override by setting "kickstack_fact_prefix"
  $fact_prefix = pick(getvar("::${variable_prefix}fact_prefix"), 'kickstack_')

  # The fact category to be used for exportfact, also sets
  # the filename in /etc/facter.d (<category>.txt):
  # * default "kickstack"
  # * override by setting "kickstack_fact_category"
  $fact_category = pick(getvar("::${variable_prefix}fact_category"), "kickstack")

  # Whether or not we want to keep OpenStack packages at the latest versions
  # * default 'installed'
  # * override by setting to 'latest'
  # Does not apply to packages outside OpenStack.
  $package_ensure = pick(getvar("::${variable_prefix}package_ensure"), 'installed')

  # The strategy to use so machines can make their hostnames known to
  # each other.
  # * default "hosts" -- manage /etc/hosts
  $name_resolution = pick(getvar("::${variable_prefix}name_resolution"),"hosts")

  # Enables verbose logging globally 
  $verbose = str2bool(pick(getvar("::${variable_prefix}verbose"), 'false'))

  # Enables debug logging globally
  $debug = str2bool(pick(getvar("::${variable_prefix}debug"), 'false'))

  # The database backend type:
  # * default "mysql"
  # * override by setting "kickstack_database"
  $database = pick(getvar("::${variable_prefix}database"), 'mysql')

  # The mysql "root" user's password
  # (ignored unless kickstack_database=='mysql')
  # * default "kickstack"
  # * override by setting "kickstack_mysql_root_password"
  $mysql_root_password = pick(getvar("::${variable_prefix}mysql_root_password"), 'kickstack')

  # The "postgres" user's password
  # (ignored unless kickstack_database=='postgresql')
  # * default "kickstack"
  # * override by setting "kickstack_postgres_password"
  $postgres_password = pick(getvar("::${variable_prefix}postgres_password"), 'kickstack')

  # The RPC server type:
  # * default "rabbitmq"
  # * override by setting "kickstack_amqp"
  $rpc = pick(getvar("::${variable_prefix}rpc"), 'rabbitmq')

  # RabbitMQ user name:
  $rabbit_userid = pick(getvar("::${variable_prefix}rabbit_userid"),'kickstack')

  # RabbitMQ virtual host
  $rabbit_virtual_host = pick(getvar("::${variable_prefix}rabbit_virtual_host"),'/')

  # Qpid user name:
  $qpid_username = pick(getvar("::${variable_prefix}qpid_username"),'kickstack')

  # Qpid realm:
  $qpid_realm = getvar("::${variable_prefix}qpid_realm")

  # The Keystone region to manage
  $keystone_region = pick(getvar("::${variable_prefix}keystone_region"), 'kickstack')

  # The suffix to append to the keystone hostname for publishing
  # the public service endpoint
  $keystone_public_suffix = getvar("::${variable_prefix}keystone_public_suffix")

  # The suffix to append to the keystone hostname for publishing
  # the admin service endpoint
  $keystone_admin_suffix = getvar("::${variable_prefix}keystone_admin_suffix")

  # The tenant set up so that individual OpenStack services can
  # authenticate with Keystone
  $keystone_service_tenant = pick(getvar("::${variable_prefix}keystone_service_tenant"),"services")

  # The special tenant set up for administrative purposes
  $keystone_admin_tenant = pick(getvar("::${variable_prefix}keystone_admin_tenant"),'openstack')

  # The email address set for the admin user
  $keystone_admin_email = pick(getvar("::${variable_prefix}keystone_admin_email"),"admin@${hostname}")

  # The initial password to set for the admin user
  $keystone_admin_password = pick(getvar("::${variable_prefix}keystone_admin_password"),"kickstack")

  # The backend to use with Cinder. Supported: iscsi (default), rbd
  $cinder_backend = pick(getvar("::${variable_prefix}cinder_backend"),"iscsi")

  # The device to create the LVM physical volume on. Ignored unless $cinder_backend==iscsi.
  $cinder_lvm_pv = pick(getvar("::${variable_prefix}cinder_lvm_pv"),"/dev/disk/by-partlabel/cinder-volumes")

  # The LVM volume group name to use for volumes. Ignored unless $cinder_backend==iscsi.
  $cinder_lvm_vg = pick(getvar("::${variable_prefix}cinder_lvm_vg"),"cinder-volumes")

  # The RADOS pool to use for volumes. Ignored unless $cinder_backend==rbd.
  $cinder_rbd_pool = pick(getvar("::${variable_prefix}cinder_rbd_pool"),"cinder-volumes")

  # The RADOS user to use for volumes. Ignored unless $cinder_backend==rbd.
  $cinder_rbd_user = pick(getvar("::${variable_prefix}cinder_rbd_pool"),"cinder")

  # The network type to configure for Quantum.
  # See http://docs.openstack.org/grizzly/openstack-network/admin/content/use_cases.html
  # Supported:
  # single-flat (default)
  # provider-router
  # per-tenant-router
  $quantum_network_type = pick(getvar("::${variable_prefix}quantum_network_type"),"single-flat")

  # The plugin to use with Quantum.
  # Supported:
  # linuxbridge
  # ovs (default)
  $quantum_plugin = pick(getvar("::${variable_prefix}quantum_plugin"),"ovs")

  # The tenant network type to use with the Quantum ovs and linuxbridge plugins
  # Supported: flat (default), vlan, gre
  $quantum_tenant_network_type = pick(getvar("::${variable_prefix}quantum_tenant_network_type"),'vlan')

  # The Quantum physical network name to define
  $quantum_physnet = pick(getvar("::${variable_prefix}quantum_physnet"),'physnet1')

  # The network VLAN ranges to use with the Quantum ovs and linuxbridge plugins
  # (ignored unless quantum_tenant_network_type == 'vlan')
  $quantum_network_vlan_ranges = pick(getvar("::${variable_prefix}quantum_network_vlan_ranges"),"2000:3999")

  # The tunnel ID ranges to use with the Quantum ovs plugin, when in gre mode
  # (ignored unless quantum_tenant_network_type == 'gre')
  $quantum_tunnel_id_ranges = pick(getvar("::${variable_prefix}quantum_tunnel_id_ranges"),"1:1000")

  # The Quantum integration bridge
  # Default: br-int (normally doesn't need to be changed)
  $quantum_integration_bridge = pick(getvar("::${variable_prefix}quantum_integration_bridge"),'br-int')

  # The Quantum tunnel bridge (irrelevant unless $quantum_tenant_network_type=='gre')
  # Default: br-tun (normally doesn't need to be changed)
  $quantum_tunnel_bridge = pick(getvar("::${variable_prefix}quantum_tunnel_bridge"),'br-tun')

  # The Quantum external bridge
  # Default: br-ex (normally doesn't need to be changed)
  $quantum_external_bridge = pick(getvar("::${variable_prefix}quantum_external_bridge"),'br-ex')

  # The interface over which to run your nodes' management network traffic.
  # Normally, this would be your primary network interface.
  $nic_management = pick(getvar("::${variable_prefix}nic_management"),"eth0")

  # The interface over which to run your tenant guest traffic.
  # This would be a secondary interface, present on your network node and compute nodes.
  $nic_data = pick(getvar("::${variable_prefix}nic_data"),"eth1")

  # The interface you use to connect to the public network.
  # This interface would only be present on your network nodes, and possibly also
  # on your API nodes if you wish to expose the API services publicly.
  $nic_external = pick(getvar("::${variable_prefix}nic_external"),"eth2")

  # The Quantum router uuid (irrelevant unless $quantum_network_type=='provider_router')
  $quantum_router_id = getvar("::${variable_prefix}quantum_router_id")

  # The Quantum external network uuid (irrelevant unless $quantum_network_type=='provider_router')
  $quantum_gateway_external_network_id = getvar("::${variable_prefix}gateway_external_network_id")

  # The nova-compute backend driver.
  # Supported: libvirt (default), xenserver
  $nova_compute_driver = pick(getvar("::${variable_prefix}nova_compute_driver"),'libvirt')

  # The hypervisor to use with libvirt (ignored unless nova_compute_driver==libvirt)
  # Supported: kvm (default), qemu
  $nova_compute_libvirt_type = pick(getvar("::${variable_prefix}nova_compute_libvirt_type"),'kvm')

  # The XenAPI connection URL (ignored unless nova_compute_driver==xenserver)
  $xenapi_connection_url = getvar("::${variable_prefix}xenapi_connection_url")

  # The XenAPI user name (ignored unless nova_compute_driver==xenserver)
  $xenapi_connection_username = getvar("::${variable_prefix}xenapi_connection_username")

  # The XenAPI password (ignored unless nova_compute_driver==xenserver)
  $xenapi_connection_password = getvar("::${variable_prefix}xenapi_connection_password")

}