Puppet Class: openstack::clientpackages::vms::common

Defined in:
modules/openstack/manifests/clientpackages/vms/common.pp

Overview

this is the class for use by VM instances in Cloud VPS. Don't use for HW servers



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
# File 'modules/openstack/manifests/clientpackages/vms/common.pp', line 4

class openstack::clientpackages::vms::common(
) {
    requires_realm('labs')

    if debian::codename::le('buster') {
        $py2packages = [
            'python-novaclient',
            'python-glanceclient',
            'python-keystoneclient',
            'python-openstackclient',
            'python-designateclient',
            'python-neutronclient',
            'python-netaddr',
        ]
        ensure_packages($py2packages)

        # Wrapper python class to easily query openstack clients
        file { '/usr/lib/python2.7/dist-packages/mwopenstackclients.py':
            ensure => 'present',
            source => 'puppet:///modules/openstack/clientpackages/py2/mwopenstackclients.py',
            mode   => '0755',
            owner  => 'root',
            group  => 'root',
        }
    }

    $py3packages = [
        'python3-novaclient',
        'python3-glanceclient',
        'python3-keystoneauth1',
        'python3-keystoneclient',
        'python3-openstackclient',
        'python3-designateclient',
        'python3-neutronclient',
        'python3-tenacity',
        'python3-troveclient',
        'python3-netaddr',
    ]
    ensure_packages($py3packages)

    file { '/usr/lib/python3/dist-packages/mwopenstackclients.py':
        ensure => 'present',
        source => 'puppet:///modules/openstack/clientpackages/mwopenstackclients.py',
        mode   => '0755',
        owner  => 'root',
        group  => 'root',
    }
}