Puppet Class: profile::openstack::base::nova::compute::service

Defined in:
modules/profile/manifests/openstack/base/nova/compute/service.pp

Overview

Parameters:

  • version (String) (defaults to: lookup('profile::openstack::base::version'))
  • instance_dev (String) (defaults to: lookup('profile::openstack::base::nova::instance_dev'))
  • network_flat_interface (String[1]) (defaults to: lookup('profile::openstack::base::nova::network_flat_interface'))
  • network_flat_tagged_base_interface (Optional[String[1]]) (defaults to: lookup('profile::openstack::base::nova::network_flat_tagged_base_interface', {default_value => undef}))
  • network_flat_interface_vlan (String) (defaults to: lookup('profile::openstack::base::nova::network_flat_interface_vlan'))
  • legacy_vlan_naming (Boolean) (defaults to: lookup('legacy_vlan_naming', {default_value => true}))
  • all_cloudvirts (Array[Stdlib::Fqdn]) (defaults to: lookup('profile::openstack::base::nova::all_cloudvirts'))
  • libvirt_cpu_model (String) (defaults to: lookup('profile::openstack::base::nova::libvirt_cpu_model'))
  • enable_nova_rbd (Optional[Boolean]) (defaults to: lookup('profile::cloudceph::client::rbd::enable_nova_rbd', {'default_value' => false}))
  • ceph_rbd_pool (Optional[String]) (defaults to: lookup('profile::cloudceph::client::rbd::pool', {'default_value' => undef}))
  • ceph_rbd_client_name (Optional[String]) (defaults to: lookup('profile::cloudceph::client::rbd::client_name', {'default_value' => undef}))
  • libvirt_rbd_uuid (Optional[String]) (defaults to: lookup('profile::cloudceph::client::rbd::libvirt_rbd_uuid', {'default_value' => undef}))
  • modern_nic_setup (Boolean) (defaults to: lookup('profile::openstack::base::nova::modern_nic_setup', {default_value => true}))
  • compute_id (Optional[String[1]]) (defaults to: lookup('profile::openstack::base::nova::compute::id', {default_value => undef}))


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
# File 'modules/profile/manifests/openstack/base/nova/compute/service.pp', line 1

class profile::openstack::base::nova::compute::service(
    String $version = lookup('profile::openstack::base::version'),
    String $instance_dev = lookup('profile::openstack::base::nova::instance_dev'),
    String[1] $network_flat_interface = lookup('profile::openstack::base::nova::network_flat_interface'),
    Optional[String[1]] $network_flat_tagged_base_interface = lookup('profile::openstack::base::nova::network_flat_tagged_base_interface', {default_value => undef}),
    String $network_flat_interface_vlan = lookup('profile::openstack::base::nova::network_flat_interface_vlan'),
    Boolean $legacy_vlan_naming = lookup('legacy_vlan_naming', {default_value => true}),
    Array[Stdlib::Fqdn] $all_cloudvirts = lookup('profile::openstack::base::nova::all_cloudvirts'),
    String $libvirt_cpu_model = lookup('profile::openstack::base::nova::libvirt_cpu_model'),
    Optional[Boolean] $enable_nova_rbd = lookup('profile::cloudceph::client::rbd::enable_nova_rbd', {'default_value' => false}),
    Optional[String] $ceph_rbd_pool = lookup('profile::cloudceph::client::rbd::pool', {'default_value' => undef}),
    Optional[String] $ceph_rbd_client_name = lookup('profile::cloudceph::client::rbd::client_name', {'default_value' => undef}),
    Optional[String] $libvirt_rbd_uuid = lookup('profile::cloudceph::client::rbd::libvirt_rbd_uuid', {'default_value' => undef}),
    Boolean          $modern_nic_setup = lookup('profile::openstack::base::nova::modern_nic_setup', {default_value => true}),
    Optional[String[1]] $compute_id = lookup('profile::openstack::base::nova::compute::id', {default_value => undef}),
) {
    ensure_packages('conntrack')

    # If this node was previously a 'spare' node then it will have ferm installed
    #  which will interfere with various nova things
    package { 'ferm':
        ensure  => absent,
    }

    if $modern_nic_setup {
        interface::tagged { $network_flat_interface:
            base_interface     => $facts['interface_primary'],
            vlan_id            => $network_flat_interface_vlan,
            method             => 'manual',
            legacy_vlan_naming => false,
        }
    } else {
        interface::tagged { $network_flat_interface:
            base_interface     => $network_flat_tagged_base_interface,
            vlan_id            => $network_flat_interface_vlan,
            method             => 'manual',
            up                 => 'ip link set $IFACE up',
            down               => 'ip link set $IFACE down',
            legacy_vlan_naming => $legacy_vlan_naming,
        }
    }

    if $instance_dev == 'srvlink' {
        # The special value 'srvlink' means that /srv was already created
        #  by partman (probably with lvm) and we just link to it.
        file { '/srv/instances':
            ensure  => 'directory',
            owner   => 'nova',
            group   => 'nova',
            recurse =>  true,
        }

        # The nova package will create an empty directory here, 
        #  replace with a link
        file { '/var/lib/nova/instances':
            ensure  => 'link',
            owner   => 'nova',
            group   => 'nova',
            replace => true,
            force   => true,
            target  => '/srv/instances',
        }
    } else {
        if $instance_dev != 'thinvirt' {
            # The special value 'thinvirt' indicates that there's no local instance
            #  storage on this host. Ultimately all cloudvirts will be like this,
            #  at which point we won't need this hack.
            file { '/var/lib/nova/instances':
                ensure  => 'directory',
                owner   => 'nova',
                group   => 'nova',
                recurse =>  true,
            }

            mount { '/var/lib/nova/instances':
                ensure  => mounted,
                device  => $instance_dev,
                fstype  => 'xfs',
                options => 'defaults',
                require => File['/var/lib/nova/instances'],
            }
        }
    }

    # Increase the size of conntrack table size (default is 65536)
    #  T139598 T355222
    sysctl::parameters { 'nova_conntrack':
        values => {
            'net.netfilter.nf_conntrack_max'                   => 524288,
            'net.netfilter.nf_conntrack_tcp_timeout_time_wait' => 65,
        },
    }

    kmod::options { 'nf_conntrack':
        options => 'hashsize=65536',
    }

    # Reuse the puppet cert as the labvirt cert
    #  Note that even though libvirtd.conf claims to let you
    #  configure these libvirt_ paths, it actually seems
    #  to hardcode things in places so best to stick with
    #  the paths listed below.
    # TODO: use puppet::expose_agent_certs (which does not support custom
    #  paths) or PKI directly
    $certpath          = '/var/lib/nova'
    # The 'client*' names are hardcoded in the client code, but the server
    # config can specify custom paths. Since we're using a single cert for both
    # client and server they're both using 'client*' files instead of having
    # duplicates on disk.
    # Also note, the cacert file is only used for verification - the certs in
    # clientcert.pem must include the full chain.
    $libvirt_cert_pub  = "${certpath}/clientcert.pem"
    $libvirt_cert_priv = "${certpath}/clientkey.pem"
    $libvirt_cert_ca   = "${certpath}/cacert.pem"
    $puppet_cert_pub   = $facts['puppet_config']['hostcert']
    $puppet_cert_chain = $facts['puppet_config']['localcacert']
    $puppet_cert_priv  = $facts['puppet_config']['hostprivkey']

    file { '/var/lib/nova/ssl/':
        ensure => directory,
    }

    concat { $libvirt_cert_pub:
        ensure => present,
        owner  => 'nova',
        group  => 'libvirt',
        notify => Service['libvirtd'],
    }

    concat::fragment { 'libvirtd_puppet_agent_cert':
        source => $puppet_cert_pub,
        order  => 1,
        target => $libvirt_cert_pub,
    }
    concat::fragment { 'libvirtd_puppet_cert_chain':
        source => $puppet_cert_chain,
        order  => 2,
        target => $libvirt_cert_pub,
    }

    file { $libvirt_cert_priv:
        ensure    => present,
        source    => "file://${puppet_cert_priv}",
        owner     => 'nova',
        group     => 'libvirt',
        mode      => '0640',
        show_diff => false,
        notify    => Service['libvirtd'],
    }

    file { $libvirt_cert_ca:
        ensure => present,
        source => "file://${puppet_cert_chain}",
        owner  => 'nova',
        group  => 'libvirt',
        notify => Service['libvirtd'],
    }

    class {'openstack::nova::compute::service':
        version              => $version,
        libvirt_cpu_model    => $libvirt_cpu_model,
        certpath             => $certpath,
        all_cloudvirts       => $all_cloudvirts,
        ceph_rbd_pool        => $ceph_rbd_pool,
        ceph_rbd_client_name => $ceph_rbd_client_name,
        libvirt_rbd_uuid     => $libvirt_rbd_uuid,
        enable_nova_rbd      => $enable_nova_rbd,
        compute_id           => $compute_id,
    }
    contain 'openstack::nova::compute::service'

    # this can be deleted
    class { 'prometheus::node_cloudvirt_ceph_network': }

    class { 'prometheus::node_cloudvirt_libvirt_stats': }

    if debian::codename::eq('bullseye') {
        grub::bootparam { 'disable_unified_cgroup_hierarchy':
            key   => 'systemd.unified_cgroup_hierarchy',
            value => '0',
        }
        grub::bootparam { 'disable_legacy_systemd_cgroup_controller':
            key   => 'systemd.legacy_systemd_cgroup_controller',
            value => '0',
        }
    }

    # this is not done at the user definition time due to only being needed for cloudvirts
    exec { 'Add nova user to libvirt-qemu group':
        command => '/usr/sbin/usermod -G libvirt-qemu nova',
        unless  => '/usr/bin/id nova | /usr/bin/grep -q -E \'\(libvirt-qemu\)\''
    }

    # script to run commands via consoles in an emergency
    file { '/usr/local/sbin/wmcs-run-console-command':
        ensure => file,
        source => 'puppet:///modules/profile/openstack/base/nova/compute/wmcs-run-console-command.py',
        owner  => 'root',
        group  => 'root',
        mode   => '0555',
    }
}