aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Hunsaker <jhunsake@redhat.com>2015-04-09 16:16:54 -0400
committerAdam Stokes <adam.stokes@ubuntu.com>2015-09-29 09:54:18 -0400
commit65da27c5bb75b189c441ae2d65f0a26e11917624 (patch)
tree45d421fab5928a981e6da221d7e9264e037e28bd
parent7998f368f59998205a57eff358f24af89daa8c99 (diff)
downloadsos-65da27c5bb75b189c441ae2d65f0a26e11917624.tar.gz
[atomic] Add plugin for Atomic Host
This plugin is for Atomic Host systems. By default it will capture host status and ostree configuration. With the 'info' option it will collect 'atomic info' for unique images. Closes #549 Signed-off-by: Jake Hunsaker <jhunsake@redhat.com> Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
-rw-r--r--sos/plugins/atomichost.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/sos/plugins/atomichost.py b/sos/plugins/atomichost.py
new file mode 100644
index 00000000..7295f6c7
--- /dev/null
+++ b/sos/plugins/atomichost.py
@@ -0,0 +1,44 @@
+# Copyright (C) 2015 Red Hat, Inc.
+
+# 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
+import os.path
+
+
+class AtomicHost(Plugin, RedHatPlugin):
+ """ Atomic Host """
+
+ plugin_name = "atomichost"
+ option_list = [("info", "gather atomic info for each image",
+ "fast", False)]
+
+ def check_enabled(self):
+ if not os.path.exists("/host/etc/system-release-cpe"):
+ return False
+ cpe = open("/host/etc/system-release-cpe", "r").readlines()
+ return ':atomic-host' in cpe[0]
+
+ def setup(self):
+ self.add_copy_spec("/etc/ostree/remotes.d")
+ self.add_cmd_output("atomic host status")
+
+ if self.get_option('info'):
+ images = self.get_command_output("docker images -q")
+ for image in set(
+ images['output'].splitlines()
+ ):
+ if image:
+ self.add_cmd_output("atomic info {0}".format(image))