Merge "Remove NFS bits from overcloud_compute manifest"
[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   nova_config {
51     'DEFAULT/my_ip': value => $ipaddress;
52     'DEFAULT/linuxnet_interface_driver': value => 'nova.network.linux_net.LinuxOVSInterfaceDriver';
53   }
54
55   if hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
56     file { '/etc/libvirt/qemu.conf':
57       ensure  => present,
58       content => hiera('midonet_libvirt_qemu_data')
59     }
60   }
61
62   include ::neutron
63   include ::neutron::config
64
65   # If the value of core plugin is set to 'nuage',
66   # include nuage agent,
67   # If the value of core plugin is set to 'midonet',
68   # include midonet agent,
69   # else use the default value of 'ml2'
70   if hiera('neutron::core_plugin') == 'neutron.plugins.nuage.plugin.NuagePlugin' {
71     include ::nuage::vrs
72     include ::nova::compute::neutron
73
74     class { '::nuage::metadataagent':
75       nova_os_tenant_name => hiera('nova::api::admin_tenant_name'),
76       nova_os_password    => hiera('nova_password'),
77       nova_metadata_ip    => hiera('nova_metadata_node_ips'),
78       nova_auth_ip        => hiera('keystone_public_api_virtual_ip'),
79     }
80   }
81   elsif hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
82
83     # TODO(devvesa) provide non-controller ips for these services
84     $zookeeper_node_ips = hiera('neutron_api_node_ips')
85     $cassandra_node_ips = hiera('neutron_api_node_ips')
86
87     class { '::tripleo::network::midonet::agent':
88       zookeeper_servers => $zookeeper_node_ips,
89       cassandra_seeds   => $cassandra_node_ips
90     }
91   }
92   elsif hiera('neutron::core_plugin') == 'neutron_plugin_contrail.plugins.opencontrail.contrail_plugin.NeutronPluginContrailCoreV2' {
93
94     include ::contrail::vrouter
95     # NOTE: it's not possible to use this class without a functional
96     # contrail controller up and running
97     #class {'::contrail::vrouter::provision_vrouter':
98     #  require => Class['contrail::vrouter'],
99     #}
100   }
101   elsif hiera('neutron::core_plugin') == 'networking_plumgrid.neutron.plugins.plugin.NeutronPluginPLUMgridV2' {
102     # forward all ipv4 traffic
103     # this is required for the vms to pass through the gateways public interface
104     sysctl::value { 'net.ipv4.ip_forward': value => '1' }
105
106     # ifc_ctl_pp needs to be invoked by root as part of the vif.py when a VM is powered on
107     file { '/etc/sudoers.d/ifc_ctl_sudoers':
108       ensure  => file,
109       owner   => root,
110       group   => root,
111       mode    => '0440',
112       content => "nova ALL=(root) NOPASSWD: /opt/pg/bin/ifc_ctl_pp *\n",
113     }
114   }
115   else {
116
117     # NOTE: this code won't live in puppet-neutron until Neutron OVS agent
118     # can be gracefully restarted. See https://review.openstack.org/#/c/297211
119     # In the meantime, it's safe to restart the agent on each change in neutron.conf,
120     # because Puppet changes are supposed to be done during bootstrap and upgrades.
121     # Some resource managed by Neutron_config (like messaging and logging options) require
122     # a restart of OVS agent. This code does it.
123     # In Newton, OVS agent will be able to be restarted gracefully so we'll drop the code
124     # from here and fix it in puppet-neutron.
125     Neutron_config<||> ~> Service['neutron-ovs-agent-service']
126
127     include ::neutron::plugins::ml2
128     include ::neutron::agents::ml2::ovs
129
130     if 'cisco_n1kv' in hiera('neutron::plugins::ml2::mechanism_drivers') {
131       class { '::neutron::agents::n1kv_vem':
132         n1kv_source  => hiera('n1kv_vem_source', undef),
133         n1kv_version => hiera('n1kv_vem_version', undef),
134       }
135     }
136
137     if 'bsn_ml2' in hiera('neutron::plugins::ml2::mechanism_drivers') {
138       include ::neutron::agents::bigswitch
139     }
140   }
141
142   include ::ceilometer
143   include ::ceilometer::config
144   include ::ceilometer::agent::compute
145   include ::ceilometer::agent::auth
146
147   hiera_include('compute_classes')
148 }
149
150 $package_manifest_name = join(['/var/lib/tripleo/installed-packages/overcloud_compute', hiera('step')])
151 package_manifest{$package_manifest_name: ensure => present}