Merge "updating enable_ceph conditions for controller"
[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(sysctl::value, hiera('sysctl_settings'), {})
20
21 if count(hiera('ntp::servers')) > 0 {
22   include ::ntp
23 }
24
25 include ::timezone
26
27 file { ['/etc/libvirt/qemu/networks/autostart/default.xml',
28         '/etc/libvirt/qemu/networks/default.xml']:
29   ensure => absent,
30   before => Service['libvirt'],
31 }
32 # in case libvirt has been already running before the Puppet run, make
33 # sure the default network is destroyed
34 exec { 'libvirt-default-net-destroy':
35   command => '/usr/bin/virsh net-destroy default',
36   onlyif  => '/usr/bin/virsh net-info default | /bin/grep -i "^active:\s*yes"',
37   before  => Service['libvirt'],
38 }
39
40 include ::nova
41 include ::nova::config
42 include ::nova::compute
43
44 nova_config {
45   'DEFAULT/my_ip':                     value => $ipaddress;
46   'DEFAULT/linuxnet_interface_driver': value => 'nova.network.linux_net.LinuxOVSInterfaceDriver';
47 }
48
49 $rbd_ephemeral_storage = hiera('nova::compute::rbd::ephemeral_storage', false)
50 $rbd_persistent_storage = hiera('rbd_persistent_storage', false)
51 if $rbd_ephemeral_storage or $rbd_persistent_storage {
52   include ::ceph::profile::client
53
54   $client_keys = hiera('ceph::profile::params::client_keys')
55   $client_user = join(['client.', hiera('ceph_client_user_name')])
56   class { '::nova::compute::rbd':
57     libvirt_rbd_secret_key => $client_keys[$client_user]['secret'],
58   }
59 }
60
61 if hiera('cinder_enable_nfs_backend', false) {
62   if str2bool($::selinux) {
63     selboolean { 'virt_use_nfs':
64       value      => on,
65       persistent => true,
66     } -> Package['nfs-utils']
67   }
68
69   package {'nfs-utils': } -> Service['nova-compute']
70 }
71
72 include ::nova::compute::libvirt
73 if hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
74   file {'/etc/libvirt/qemu.conf':
75     ensure  => present,
76     content => hiera('midonet_libvirt_qemu_data')
77   }
78 }
79 include ::nova::network::neutron
80 include ::neutron
81
82 # If the value of core plugin is set to 'nuage',
83 # include nuage agent,
84 # If the value of core plugin is set to 'midonet',
85 # include midonet agent,
86 # else use the default value of 'ml2'
87 if hiera('neutron::core_plugin') == 'neutron.plugins.nuage.plugin.NuagePlugin' {
88   include ::nuage::vrs
89   include ::nova::compute::neutron
90
91   class { '::nuage::metadataagent':
92     nova_os_tenant_name => hiera('nova::api::admin_tenant_name'),
93     nova_os_password    => hiera('nova_password'),
94     nova_metadata_ip    => hiera('nova_metadata_node_ips'),
95     nova_auth_ip        => hiera('keystone_public_api_virtual_ip'),
96   }
97 }
98 elsif hiera('neutron::core_plugin') == 'midonet.neutron.plugin_v1.MidonetPluginV2' {
99
100   # TODO(devvesa) provide non-controller ips for these services
101   $zookeeper_node_ips = hiera('neutron_api_node_ips')
102   $cassandra_node_ips = hiera('neutron_api_node_ips')
103
104   class {'::tripleo::network::midonet::agent':
105     zookeeper_servers => $zookeeper_node_ips,
106     cassandra_seeds   => $cassandra_node_ips
107   }
108 }
109 else {
110
111   include ::neutron::plugins::ml2
112   include ::neutron::agents::ml2::ovs
113
114   if 'cisco_n1kv' in hiera('neutron::plugins::ml2::mechanism_drivers') {
115     class { '::neutron::agents::n1kv_vem':
116       n1kv_source  => hiera('n1kv_vem_source', undef),
117       n1kv_version => hiera('n1kv_vem_version', undef),
118     }
119   }
120 }
121
122
123 include ::ceilometer
124 include ::ceilometer::config
125 include ::ceilometer::agent::compute
126 include ::ceilometer::agent::auth
127
128 $snmpd_user = hiera('snmpd_readonly_user_name')
129 snmp::snmpv3_user { $snmpd_user:
130   authtype => 'MD5',
131   authpass => hiera('snmpd_readonly_user_password'),
132 }
133 class { '::snmp':
134   agentaddress => ['udp:161','udp6:[::1]:161'],
135   snmpd_config => [ join(['rouser ', hiera('snmpd_readonly_user_name')]), 'proc  cron', 'includeAllDisks  10%', 'master agentx', 'trapsink localhost public', 'iquerySecName internalUser', 'rouser internalUser', 'defaultMonitors yes', 'linkUpDownNotifications yes' ],
136 }
137
138 hiera_include('compute_classes')
139 package_manifest{'/var/lib/tripleo/installed-packages/overcloud_compute': ensure => present}