First iteration of libvirt and nova-compute as a composable services
[apex-tripleo-heat-templates.git] / puppet / manifests / overcloud_compute.pp
1 # Copyright 2014 Red Hat, Inc.
2 # All Rights Reserved.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License"); you may
5 # not use this file except in compliance with the License. You may obtain
6 # a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 # License for the specific language governing permissions and limitations
14 # under the License.
15
16 include ::tripleo::packages
17 include ::tripleo::firewall
18
19 create_resources(kmod::load, hiera('kernel_modules'), { })
20 create_resources(sysctl::value, hiera('sysctl_settings'), { })
21 Exec <| tag == 'kmod::load' |>  -> Sysctl <| |>
22
23 if hiera('step') >= 4 {
24
25   # When utilising images for deployment, we need to reset the iSCSI initiator name to make it unique
26   exec { 'reset-iscsi-initiator-name':
27     command => '/bin/echo InitiatorName=$(/usr/sbin/iscsi-iname) > /etc/iscsi/initiatorname.iscsi',
28     onlyif  => '/usr/bin/test ! -f /etc/iscsi/.initiator_reset',
29   }->
30
31   file { '/etc/iscsi/.initiator_reset':
32     ensure => present,
33   }
34
35   $rbd_ephemeral_storage = hiera('nova::compute::rbd::ephemeral_storage', false)
36   $rbd_persistent_storage = hiera('rbd_persistent_storage', false)
37   if $rbd_ephemeral_storage or $rbd_persistent_storage {
38     if str2bool(hiera('ceph_ipv6', false)) {
39       $mon_host = hiera('ceph_mon_host_v6')
40     } else {
41       $mon_host = hiera('ceph_mon_host')
42     }
43     class { '::ceph::profile::params':
44       mon_host            => $mon_host,
45     }
46     include ::ceph::conf
47     include ::ceph::profile::client
48   }
49
50   if hiera('cinder_enable_nfs_backend', false) {
51     if str2bool($::selinux) {
52       selboolean { 'virt_use_nfs':
53         value      => on,
54         persistent => true,
55       } -> Package['nfs-utils']
56     }
57
58     package { 'nfs-utils': } -> Service['nova-compute']
59   }
60
61   # TODO(emilien): figure if we *really* need those 2 parameters:
62   nova_config {
63     'DEFAULT/my_ip': value => $ipaddress;
64     'DEFAULT/linuxnet_interface_driver': value => 'nova.network.linux_net.LinuxOVSInterfaceDriver';
65   }
66
67   if hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
68     file { '/etc/libvirt/qemu.conf':
69       ensure  => present,
70       content => hiera('midonet_libvirt_qemu_data')
71     }
72   }
73
74   include ::neutron
75   include ::neutron::config
76
77   # If the value of core plugin is set to 'nuage',
78   # include nuage agent,
79   # If the value of core plugin is set to 'midonet',
80   # include midonet agent,
81   # else use the default value of 'ml2'
82   if hiera('neutron::core_plugin') == 'neutron.plugins.nuage.plugin.NuagePlugin' {
83     include ::nuage::vrs
84     include ::nova::compute::neutron
85
86     class { '::nuage::metadataagent':
87       nova_os_tenant_name => hiera('nova::api::admin_tenant_name'),
88       nova_os_password    => hiera('nova_password'),
89       nova_metadata_ip    => hiera('nova_metadata_node_ips'),
90       nova_auth_ip        => hiera('keystone_public_api_virtual_ip'),
91     }
92   }
93   elsif hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
94
95     # TODO(devvesa) provide non-controller ips for these services
96     $zookeeper_node_ips = hiera('neutron_api_node_ips')
97     $cassandra_node_ips = hiera('neutron_api_node_ips')
98
99     class { '::tripleo::network::midonet::agent':
100       zookeeper_servers => $zookeeper_node_ips,
101       cassandra_seeds   => $cassandra_node_ips
102     }
103   }
104   elsif hiera('neutron::core_plugin') == 'neutron_plugin_contrail.plugins.opencontrail.contrail_plugin.NeutronPluginContrailCoreV2' {
105
106     include ::contrail::vrouter
107     # NOTE: it's not possible to use this class without a functional
108     # contrail controller up and running
109     #class {'::contrail::vrouter::provision_vrouter':
110     #  require => Class['contrail::vrouter'],
111     #}
112   }
113   elsif hiera('neutron::core_plugin') == 'networking_plumgrid.neutron.plugins.plugin.NeutronPluginPLUMgridV2' {
114     # forward all ipv4 traffic
115     # this is required for the vms to pass through the gateways public interface
116     sysctl::value { 'net.ipv4.ip_forward': value => '1' }
117
118     # ifc_ctl_pp needs to be invoked by root as part of the vif.py when a VM is powered on
119     file { '/etc/sudoers.d/ifc_ctl_sudoers':
120       ensure  => file,
121       owner   => root,
122       group   => root,
123       mode    => '0440',
124       content => "nova ALL=(root) NOPASSWD: /opt/pg/bin/ifc_ctl_pp *\n",
125     }
126   }
127   else {
128
129     # NOTE: this code won't live in puppet-neutron until Neutron OVS agent
130     # can be gracefully restarted. See https://review.openstack.org/#/c/297211
131     # In the meantime, it's safe to restart the agent on each change in neutron.conf,
132     # because Puppet changes are supposed to be done during bootstrap and upgrades.
133     # Some resource managed by Neutron_config (like messaging and logging options) require
134     # a restart of OVS agent. This code does it.
135     # In Newton, OVS agent will be able to be restarted gracefully so we'll drop the code
136     # from here and fix it in puppet-neutron.
137     Neutron_config<||> ~> Service['neutron-ovs-agent-service']
138
139     include ::neutron::plugins::ml2
140     include ::neutron::agents::ml2::ovs
141
142     if 'cisco_n1kv' in hiera('neutron::plugins::ml2::mechanism_drivers') {
143       class { '::neutron::agents::n1kv_vem':
144         n1kv_source  => hiera('n1kv_vem_source', undef),
145         n1kv_version => hiera('n1kv_vem_version', undef),
146       }
147     }
148
149     if 'bsn_ml2' in hiera('neutron::plugins::ml2::mechanism_drivers') {
150       include ::neutron::agents::bigswitch
151     }
152   }
153
154   include ::ceilometer
155   include ::ceilometer::config
156   include ::ceilometer::agent::compute
157   include ::ceilometer::agent::auth
158
159   hiera_include('compute_classes')
160 }
161
162 $package_manifest_name = join(['/var/lib/tripleo/installed-packages/overcloud_compute', hiera('step')])
163 package_manifest{$package_manifest_name: ensure => present}