From 18ff1137365fc6fa7e6db260343444484dd07fe2 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Fri, 6 Jun 2014 21:45:41 +0100 Subject: [docker] new plugin Add basic support for docker-io: https://www.docker.io/ Fixes #263. Signed-off-by: Bryn M. Reeves --- sos/plugins/docker.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 sos/plugins/docker.py diff --git a/sos/plugins/docker.py b/sos/plugins/docker.py new file mode 100644 index 00000000..38225d1c --- /dev/null +++ b/sos/plugins/docker.py @@ -0,0 +1,40 @@ +## Copyright (C) 2014 Red Hat, Inc. Bryn M. Reeves +### 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 2 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, write to the Free Software +## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +from sos.plugins import Plugin, RedHatPlugin + +class Docker(Plugin, RedHatPlugin): + """Docker information + """ + + plugin_name = 'docker' + + def setup(self): + self.add_copy_specs([ + "/etc/udev/rules.d/80-docker.rules", + "/var/lib/docker/repositories-*" + ]) + + self.add_cmd_outputs([ + "docker info", + "docker ps", + "docker images" + ]) + +class RedHatDocker(Plugin, RedHatPlugin): + + packages = ('docker-io',) + +# vim: et ts=4 sw=4 -- cgit