aboutsummaryrefslogtreecommitdiffstats
path: root/sos/plugins/crio.py
blob: 7afdf047646a8d26a395062c6a6deaf905781ca1 (plain) (blame)
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
# Copyright (C) 2018 Red Hat, Inc. Daniel Walsh <dwalsh@redhat.com>

# This file is part of the sos project: https://github.com/sosreport/sos
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# version 2 of the GNU General Public License.
#
# See the LICENSE file in the source distribution for further information.

from sos.plugins import Plugin, RedHatPlugin, UbuntuPlugin


class CRIO(Plugin, RedHatPlugin, UbuntuPlugin):

    """CRI-O containers
    """

    plugin_name = 'crio'
    profiles = ('container',)
    packages = ('cri-o', "cri-tools")

    option_list = [
        ("all", "enable capture for all containers, even containers "
            "that have terminated", 'fast', False),
        ("logs", "capture logs for running containers",
            'fast', False),
    ]

    def setup(self):
        self.add_copy_spec([
            "/etc/containers/registries.conf",
            "/etc/containers/storage.conf",
            "/etc/containers/mounts.conf",
            "/etc/containers/policy.json",
            "/etc/crio/crio.conf",
            "/etc/crio/seccomp.json",
            "/etc/systemd/system/cri-o.service",
        ])

        subcmds = [
            'info',
            'images',
            'pods',
            'ps',
            'ps -a',
            'stats',
            'version',
        ]

        self.add_cmd_output(["crictl %s" % s for s in subcmds])
        self.add_journal(units="cri-o")
        self.add_cmd_output("ls -alhR /etc/cni")

        ps_cmd = 'crictl ps --quiet'
        if self.get_option('all'):
            ps_cmd = "%s -a" % ps_cmd

        img_cmd = 'cri-o images --quiet'
        insp = set()

        for icmd in [ps_cmd, img_cmd]:
            result = self.get_command_output(icmd)
            if result['status'] == 0:
                for con in result['output'].splitlines():
                    insp.add(con)

        if insp:
            for container in insp:
                self.add_cmd_output("crictl inspect %s" % container)
                if self.get_option('logs'):
                    self.add_cmd_output("crictl logs -t %s" % container)

# vim: set et ts=4 sw=4 :