summaryrefslogtreecommitdiffstats
path: root/common/puppet-opnfv/manifests/controller_networker.pp
blob: 157bc8f24ee37c5c7b57efbce6f66c9af1b1e97a (plain)
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#Copyright 2015 Open Platform for NFV Project, Inc. and its contributors
#
#   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.
#
#Provides HA or non-HA setup for OpenStack Controller with ODL integration
#Mandatory common and HA variables are needed to setup each Controller
#ha_flag set to true will provide OpenStack HA of the following services:
#rabbitmq, galera mariadb, keystone, glance, nova, cinder, horizon, neutron
#includes all sub-services of those features (i.e. neutron-server, neutron-lg-agent, etc)

class opnfv::controller_networker {
  if $odl_rest_port == '' { $odl_rest_port= '8081'}
  if ($odl_flag != '') and str2bool($odl_flag) {
     $ml2_mech_drivers = ['opendaylight']
     $this_agent = 'opendaylight'
  } else {
    $ml2_mech_drivers = ['openvswitch','l2population']
    $this_agent = 'ovs'
  }

  ##Mandatory Common variables
  if $admin_email == '' { fail('admin_email is empty') }

  ##Most users will only care about a single user/password for all services
  ##so lets create one variable that can be used instead of separate usernames/passwords
  if !$single_username { $single_username = 'octopus' }
  if !$single_password { $single_password = 'octopus' }

  if !$keystone_admin_token { $keystone_admin_token = $single_password }
  if !$neutron_metadata_shared_secret { $neutron_metadata_shared_secret = $single_password }
  if !$mysql_root_password { $mysql_root_password = $single_password }
  if !$admin_password { $admin_password = $single_password }

  ##Check for HA, if not leave old functionality alone
  if $ha_flag and str2bool($ha_flag) {
    ##Mandatory HA variables
    if !$controllers_ip_array { fail('controllers_ip_array is empty') }
    $controllers_ip_array_str = $controllers_ip_array
    $controllers_ip_array = split($controllers_ip_array, ',')
    if !$controllers_hostnames_array { fail('controllers_hostnames_array is empty') }
    $controllers_hostnames_array_str = $controllers_hostnames_array
    $controllers_hostnames_array = split($controllers_hostnames_array, ',')
    if !$amqp_vip { fail('amqp_vip is empty') }
    if !$private_subnet { fail('private_subnet is empty')}
    if !$cinder_admin_vip { fail('cinder_admin_vip is empty') }
    if !$cinder_private_vip { fail('cinder_private_vip is empty') }
    if !$cinder_public_vip { fail('cinder_public_vip is empty') }
    if !$db_vip { fail('db_vip is empty') }
    if !$glance_admin_vip { fail('glance_admin_vip is empty') }
    if !$glance_private_vip { fail('glance_private_vip is empty') }
    if !$glance_public_vip { fail('glance_public_vip is empty') }
    if !$horizon_admin_vip { fail('horizon_admin_vip is empty') }
    if !$horizon_private_vip { fail('horizon_private_vip is empty') }
    if !$horizon_public_vip { fail('horizon_public_vip is empty') }
    if !$keystone_admin_vip { fail('keystone_admin_vip is empty') }
    if !$keystone_private_vip { fail('keystone_private_vip is empty') }
    if !$keystone_public_vip { fail('keystone_public_vip is empty') }
    if !$loadbalancer_vip { fail('loadbalancer_vip is empty') }
    if !$neutron_admin_vip { fail('neutron_admin_vip is empty') }
    if !$neutron_private_vip { fail('neutron_private_vip is empty') }
    if !$neutron_public_vip { fail('neutron_public_vip is empty') }
    if !$nova_admin_vip { fail('nova_admin_vip is empty') }
    if !$nova_private_vip { fail('nova_private_vip is empty') }
    if !$nova_public_vip { fail('nova_public_vip is empty') }
    if $private_network == '' { fail('private_network is empty') }
    if !$heat_admin_vip { fail('heat_admin_vip is empty') }
    if !$heat_private_vip { fail('heat_private_vip is empty') }
    if !$heat_public_vip { fail('heat_public_vip is empty') }
    if !$heat_cfn_admin_vip { fail('heat_cfn_admin_vip is empty') }
    if !$heat_cfn_private_vip { fail('heat_cfn_private_vip is empty') }
    if !$heat_cfn_public_vip { fail('heat_cfn_public_vip is empty') }

    ##Find private interface
    $ovs_tunnel_if = get_nic_from_network("$private_network")

    ##Optional HA variables
    if !$amqp_username  { $amqp_username = $single_username }
    if !$amqp_password  { $amqp_password = $single_password }
    if !$ceph_fsid { $ceph_fsid = '904c8491-5c16-4dae-9cc3-6ce633a7f4cc' }
    if !$ceph_images_key { $ceph_images_key = 'AQAfHBdUKLnUFxAAtO7WPKQZ8QfEoGqH0CLd7A==' }
    if !$ceph_mon_host { $ceph_mon_host= $controllers_ip_array }
    if !$ceph_mon_initial_members { $ceph_mon_initial_members = $controllers_hostnames_array}
    if !$ceph_osd_journal_size { $ceph_osd_journal_size = '1000' }
    if !$ceph_osd_pool_size { $ceph_osd_pool_size = '1' }
    if !$ceph_public_network { $ceph_public_network = $private_subnet }
    if !$ceph_volumes_key { $ceph_volumes_key = 'AQAfHBdUsFPTHhAAfqVqPq31FFCvyyO7oaOQXw==' }
    if !$cinder_db_password { $cinder_db_password = $single_password }
    if !$cinder_user_password { $cinder_user_password = $single_password }
    if !$cluster_control_ip { $cluster_control_ip = $controllers_ip_array[0] }
    if !$horizon_secret { $horizon_secret = $single_password }
    if !$glance_db_password { $glance_db_password = $single_password }
    if !$glance_user_password { $glance_user_password = $single_password }
    if !$keystone_db_password { $keystone_db_password = $single_password }
    if !$keystone_user_password { $keystone_user_password = $single_password }
    if !$lb_backend_server_addrs { $lb_backend_server_addrs = $controllers_ip_array }
    if !$lb_backend_server_names { $lb_backend_server_names = $controllers_hostnames_array }
    if !$neutron_db_password  { $neutron_db_password = $single_password }
    if !$neutron_user_password  { $neutron_user_password = $single_password }
    if !$neutron_metadata_proxy_secret { $neutron_metadata_proxy_secret = $single_password }
    if !$nova_db_password { $nova_db_password = $single_password }
    if !$nova_user_password { $nova_user_password = $single_password }
    if !$pcmk_server_addrs {$pcmk_server_addrs = $controllers_ip_array}
    if !$pcmk_server_names {$pcmk_server_names = ["pcmk-${controllers_hostnames_array[0]}", "pcmk-${controllers_hostnames_array[1]}", "pcmk-${controllers_hostnames_array[2]}"] }
    if !$rbd_secret_uuid { $rbd_secret_uuid = '3b519746-4021-4f72-957e-5b9d991723be' }
    if !$heat_user_password  { $heat_user_password = $single_password }
    if !$heat_db_password  { $heat_db_password = $single_password }
    if !$heat_cfn_user_password  { $heat_cfn_user_password = $single_password }
    if !$heat_auth_encryption_key  { $heat_auth_encryption_key = 'octopus1octopus1' }
    if !$storage_network {
          $storage_iface = $ovs_tunnel_if
    } else {
          $storage_iface = get_nic_from_network("$storage_network")
    }

    ##we assume here that if not provided, the first controller is where ODL will reside
    ##this is fine for now as we will replace ODL with ODL HA when it is ready
    if $odl_control_ip == '' { $odl_control_ip =  $controllers_ip_array[0] }

    ###find interface ip of storage network
    $osd_ip = find_ip("",
                      "$storage_iface",
                      "")

    if ($external_network_flag != '') and str2bool($external_network_flag) {
      class { "opnfv::external_net_presetup":
        stage   => presetup,
        require => Class['opnfv::repo'],
      }
    }

    class { "opnfv::ceph_deploy":
      fsid                     => $ceph_fsid,
      osd_pool_default_size    => $ceph_osd_pool_size,
      osd_journal_size         => $ceph_osd_journal_size,
      mon_initial_members      => $controllers_hostnames_array_str,
      mon_host                 => $controllers_ip_array_str,
      osd_ip                   => $osd_ip,
      public_network           => $ceph_public_network,
      cluster_network          => $ceph_public_network,
      images_key               => $ceph_images_key,
      volumes_key              => $ceph_volumes_key,
    }
    ->
    class { "quickstack::openstack_common": }
    ->
    class { "quickstack::pacemaker::params":
      amqp_password            => $amqp_password,
      amqp_username            => $amqp_username,
      amqp_vip                 => $amqp_vip,
      ceph_cluster_network     => $private_subnet,
      ceph_fsid                => $ceph_fsid,
      ceph_images_key          => $ceph_images_key,
      ceph_mon_host            => $ceph_mon_host,
      ceph_mon_initial_members => $ceph_mon_initial_members,
      ceph_osd_journal_size    => $ceph_osd_journal_size,
      ceph_osd_pool_size       => $ceph_osd_pool_size,
      ceph_public_network      => $ceph_public_network,
      ceph_volumes_key         => $ceph_volumes_key,
      cinder_admin_vip         => $cinder_admin_vip,
      cinder_db_password       => $cinder_db_password,
      cinder_private_vip       => $cinder_private_vip,
      cinder_public_vip        => $cinder_public_vip,
      cinder_user_password     => $cinder_user_password,
      cluster_control_ip       => $cluster_control_ip,
      db_vip                   => $db_vip,
      glance_admin_vip         => $glance_admin_vip,
      glance_db_password       => $glance_db_password,
      glance_private_vip       => $glance_private_vip,
      glance_public_vip        => $glance_public_vip,
      glance_user_password     => $glance_user_password,
      heat_auth_encryption_key => $heat_auth_encryption_key,
      heat_cfn_admin_vip       => $heat_cfn_admin_vip,
      heat_cfn_private_vip     => $heat_cfn_private_vip,
      heat_cfn_public_vip      => $heat_cfn_public_vip,
      heat_cfn_user_password   => $heat_cfn_user_password,
      heat_cloudwatch_enabled  => 'true',
      heat_cfn_enabled         => 'true',
      heat_db_password         => $heat_db_password,
      heat_admin_vip           => $heat_admin_vip,
      heat_private_vip         => $heat_private_vip,
      heat_public_vip          => $heat_public_vip,
      heat_user_password       => $heat_user_password,
      horizon_admin_vip        => $horizon_admin_vip,
      horizon_private_vip      => $horizon_private_vip,
      horizon_public_vip       => $horizon_public_vip,
      include_ceilometer       => 'false',
      include_cinder           => 'true',
      include_glance           => 'true',
      include_heat             => 'true',
      include_horizon          => 'true',
      include_keystone         => 'true',
      include_neutron          => 'true',
      include_nosql            => 'false',
      include_nova             => 'true',
      include_swift            => 'false',
      keystone_admin_vip       => $keystone_admin_vip,
      keystone_db_password     => $keystone_db_password,
      keystone_private_vip     => $keystone_private_vip,
      keystone_public_vip      => $keystone_public_vip,
      keystone_user_password   => $keystone_user_password,
      lb_backend_server_addrs  => $lb_backend_server_addrs,
      lb_backend_server_names  => $lb_backend_server_names,
      loadbalancer_vip         => $loadbalancer_vip,
      neutron                  => 'true',
      neutron_admin_vip        => $neutron_admin_vip,
      neutron_db_password      => $neutron_db_password,
      neutron_metadata_proxy_secret  => $neutron_metadata_proxy_secret,
      neutron_private_vip      => $neutron_private_vip,
      neutron_public_vip       => $neutron_public_vip,
      neutron_user_password    => $neutron_user_password,
      nova_admin_vip           => $nova_admin_vip,
      nova_db_password         => $nova_db_password,
      nova_private_vip         => $nova_private_vip,
      nova_public_vip          => $nova_public_vip,
      nova_user_password       => $nova_user_password,
      pcmk_iface               => $ovs_tunnel_if,
      pcmk_server_addrs        => $pcmk_server_addrs,
      pcmk_server_names        => $pcmk_server_names,
      private_iface            => $ovs_tunnel_if,
    }
    ->
    class { "quickstack::pacemaker::common": }
    ->
    class { "quickstack::pacemaker::load_balancer": }
    ->
    class { "quickstack::pacemaker::galera":
      mysql_root_password     => $mysql_root_password,
      wsrep_cluster_members   => $controllers_ip_array,
    }
    ->
     class { "quickstack::pacemaker::qpid": }
    ->
    class { "quickstack::pacemaker::rabbitmq": }
    ->
    class { "quickstack::pacemaker::keystone":
      admin_email         =>  $admin_email,
      admin_password      =>  $admin_password,
      admin_token         =>  $keystone_admin_token,
      cinder              =>  'true',
      heat                =>  'true',
      heat_cfn            =>  'true',
      keystonerc          =>  'true',
      use_syslog          =>  'true',
      verbose             =>  'true',
    }
    ->
    class { "quickstack::pacemaker::swift": }
    ->
    class { "quickstack::pacemaker::glance":
      backend         => 'rbd',
      debug           => true,
      pcmk_fs_manage  => 'false',
      use_syslog      => true,
      verbose         => true
    }
    ->
    class { "quickstack::pacemaker::nova":
      neutron_metadata_proxy_secret => $neutron_metadata_shared_secret,
    }
    ->
    class { "quickstack::pacemaker::cinder":
      backend_rbd     => true,
      rbd_secret_uuid => $rbd_secret_uuid,
      use_syslog      => true,
      verbose         => true,
      volume          => true,
    }
    ->
    class { "quickstack::pacemaker::heat":
      use_syslog      => true,
      verbose         => true,
    }
    ->
    class { "quickstack::pacemaker::constraints": }

    class { "quickstack::pacemaker::nosql": }

    class { "quickstack::pacemaker::memcached": }

    class { "quickstack::pacemaker::ceilometer":
      ceilometer_metering_secret => $single_password,
    }

    class { "quickstack::pacemaker::horizon":
      horizon_ca       =>  '/etc/ipa/ca.crt',
      horizon_cert     =>  '/etc/pki/tls/certs/PUB_HOST-horizon.crt',
      horizon_key      =>  '/etc/pki/tls/private/PUB_HOST-horizon.key',
      secret_key       =>  $horizon_secret,
      verbose          =>  'true',
    }

    class { "quickstack::pacemaker::neutron":
      agent_type               =>  $this_agent,
      enable_tunneling         =>  'true',
      ml2_mechanism_drivers    =>  $ml2_mech_drivers,
      ml2_network_vlan_ranges  =>  ["physnet1:10:50"],
      odl_controller_ip        =>  $odl_control_ip,
      odl_controller_port      =>  $odl_rest_port,
      ovs_tunnel_iface         =>  $ovs_tunnel_if,
      ovs_tunnel_types         =>  ["vxlan"],
      verbose                  =>  'true',
    }

    if ($external_network_flag != '') and str2bool($external_network_flag) {
      class { "opnfv::external_net_setup": }
    }

  } else {
    if $ovs_tunnel_if == '' { fail('ovs_tunnel_if is empty') }
    if $public_ip == '' { fail('public_ip is empty') }
    if $private_ip == '' { fail('private_ip is empty') }

    if $odl_control_ip == '' { $odl_control_ip = $private_ip }

    if $mysql_ip == '' { fail('mysql_ip is empty') }
    if $mysql_root_password == '' { fail('mysql_root_password is empty') }
    if $amqp_ip == '' { fail('amqp_ip is empty') }

    if $memcache_ip == '' { fail('memcache_ip is empty') }
    if $neutron_ip == '' { fail('neutron_ip is empty') }

    if $keystone_db_password == '' { fail('keystone_db_password is empty') }

    if $horizon_secret_key == '' { fail('horizon_secret_key is empty') }

    if $nova_user_password == '' { fail('nova_user_password is empty') }
    if $nova_db_password == '' { fail('nova_db_password is empty') }

    if $cinder_user_password == '' { fail('cinder_user_password is empty') }
    if $cinder_db_password == '' { fail('cinder_db_password is empty') }

    if $glance_user_password == '' { fail('glance_user_password is empty') }
    if $glance_db_password == '' { fail('glance_db_password is empty') }

    if $neutron_user_password == '' { fail('neutron_user_password is empty') }
    if $neutron_db_password == '' { fail('neutron_db_password is empty') }
    if $neutron_metadata_shared_secret == '' { fail('neutron_metadata_shared_secret is empty') }

    if $ceilometer_user_password == '' { fail('ceilometer_user_password is empty') }
    if $ceilometer_metering_secret == '' { fail('ceilometer_user_password is empty') }

    if $heat_user_password == '' { fail('heat_user_password is empty') }
    if $heat_db_password == '' { fail('heat_db_password is empty') }
    if $heat_auth_encrypt_key == '' { fail('heat_auth_encrypt_key is empty') }

    if $swift_user_password == '' { fail('swift_user_password is empty') }
    if $swift_shared_secret == '' { fail('swift_shared_secret is empty') }
    if $swift_admin_password == '' { fail('swift_admin_password is empty') }

    if !$amqp_username { $amqp_username = $single_username }
    if !$amqp_password { $amqp_password = $single_password }


    class { "quickstack::neutron::controller_networker":
      admin_email                   => $admin_email,
      admin_password                => $admin_password,
      agent_type                    => $this_agent,
      enable_tunneling              => true,
      ovs_tunnel_iface              => $ovs_tunnel_if,
      ovs_tunnel_network            => '',
      ovs_tunnel_types              => ['vxlan'],
      ovs_l2_population             => 'True',
      external_network_bridge       => 'br-ex',
      tenant_network_type           => 'vxlan',
      tunnel_id_ranges              => '1:1000',
      controller_admin_host         => $private_ip,
      controller_priv_host          => $private_ip,
      controller_pub_host           => $public_ip,
      ssl                           => false,
      #support_profile               => $quickstack::params::support_profile,
      #freeipa                       => $quickstack::params::freeipa,

      mysql_host                    => $mysql_ip,
      mysql_root_password           => $mysql_root_password,
      #amqp_provider                 => $amqp_provider,
      amqp_host                     => $amqp_ip,
      amqp_username                 => $amqp_username,
      amqp_password                 => $amqp_password,
      #amqp_nssdb_password           => $quickstack::params::amqp_nssdb_password,

      keystone_admin_token          => $keystone_admin_token,
      keystone_db_password          => $keystone_db_password,

      ceilometer_metering_secret    => $ceilometer_metering_secret,
      ceilometer_user_password      => $ceilometer_user_password,

      cinder_backend_gluster        => $quickstack::params::cinder_backend_gluster,
      cinder_backend_gluster_name   => $quickstack::params::cinder_backend_gluster_name,
      cinder_gluster_shares         => $quickstack::params::cinder_gluster_shares,
      cinder_user_password          => $cinder_user_password,
      cinder_db_password            => $cinder_db_password,

      glance_db_password            => $glance_db_password,
      glance_user_password          => $glance_user_password,

      heat_cfn                      => true,
      heat_cloudwatch               => true,
      heat_db_password              => $heat_db_password,
      heat_user_password            => $heat_user_password,
      heat_auth_encrypt_key         => $heat_auth_encrypt_key,

      horizon_secret_key            => $horizon_secret_key,
      horizon_ca                    => $quickstack::params::horizon_ca,
      horizon_cert                  => $quickstack::params::horizon_cert,
      horizon_key                   => $quickstack::params::horizon_key,

      ml2_mechanism_drivers         => $ml2_mech_drivers,

      #neutron                       => true,
      neutron_metadata_proxy_secret => $neutron_metadata_shared_secret,
      neutron_db_password           => $neutron_db_password,
      neutron_user_password         => $neutron_user_password,

      nova_db_password              => $nova_db_password,
      nova_user_password            => $nova_user_password,

      odl_controller_ip             => $odl_control_ip,
      odl_controller_port           => $odl_rest_port,

      swift_shared_secret           => $swift_shared_secret,
      swift_admin_password          => $swift_admin_password,
      swift_ringserver_ip           => '192.168.203.1',
      swift_storage_ips             => ["192.168.203.2","192.168.203.3","192.168.203.4"],
      swift_storage_device          => 'device1',
    }

  }
}