summaryrefslogtreecommitdiff
path: root/vmdb/plugins/ansible_plugin.py
blob: 564a32175f88ec37f69a5c3b88326d2283cae991 (plain)
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
# Copyright 2017  Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-3+ =*=

import os
import tempfile

import yaml

import vmdb


class AnsiblePlugin(vmdb.Plugin):
    def enable(self):
        self.app.step_runners.add(AnsibleStepRunner())


class AnsibleStepRunner(vmdb.StepRunnerInterface):
    def get_key_spec(self):
        return {
            "ansible": str,
            "playbook": str,
            "group": "image",
            "tags": "all",
            "config_file": "",
            "extra_vars": {},
        }

    def run(self, values, settings, state):
        tag = values["ansible"]
        playbook = values["playbook"]
        ansible_tags = values["tags"]
        group_name = values["group"]
        config_file = values["config_file"]
        extra_vars = values["extra_vars"]
        mount_point = state.tags.get_builder_mount_point(tag)
        rootfs_tarball = settings["rootfs-tarball"]

        state.ansible_inventory = self.create_inventory(mount_point, group_name)
        vmdb.progress(
            "Created {} for Ansible inventory".format(state.ansible_inventory)
        )

        extra_vars['rootfs_tarball'] = rootfs_tarball
        state.ansible_vars_file = self.create_vars_file(extra_vars)
        vmdb.progress(f"Created {state.ansible_vars_file} for Ansible variables")

        env = dict(os.environ)
        env["ANSIBLE_NOCOWS"] = "1"
        if config_file:
            if os.path.exists(config_file):
                env["ANSIBLE_CONFIG"] = config_file
                vmdb.progress(f"Using Ansible config file {config_file}")
            else:
                raise RuntimeError(
                    f"Ansible config file {config_file} does not exist")
        vmdb.runcmd(
            [
                "ansible-playbook",
                "-c",
                "chroot",
                "-i",
                state.ansible_inventory,
                "--tags",
                ansible_tags,
                "-e",
                f"@{state.ansible_vars_file}",
                playbook,
            ],
            env=env,
        )

    def teardown(self, values, settings, state):
        if hasattr(state, "ansible_vars_file"):
            vmdb.progress(f"Removing {state.ansible_vars_file}")
            os.remove(state.ansible_vars_file)

        if hasattr(state, "ansible_inventory"):
            vmdb.progress("Removing {}".format(state.ansible_inventory))
            os.remove(state.ansible_inventory)

    def create_inventory(self, chroot, group_name):
        fd, filename = tempfile.mkstemp()
        os.write(fd, f"[{group_name}]\n{chroot}\n".encode())
        os.close(fd)
        return filename

    def create_vars_file(self, extra_vars):
        fd, filename = tempfile.mkstemp(suffix=".yaml")
        os.write(fd, yaml.dump(extra_vars).encode())
        os.close(fd)
        return filename