diff options
author | Trent Lloyd <trent@lloyd.id.au> | 2019-12-11 15:38:37 +0800 |
---|---|---|
committer | Bryan Quigley <bryan.quigley@canonical.com> | 2019-12-12 12:16:59 -0800 |
commit | 49e636b89e1d4599646925f6ea483d9d99c32043 (patch) | |
tree | 5824c00fdf0315099bcb88320366162412f000bb | |
parent | 703c966cd1ee82a8a5a8f93de75847db60e23cc1 (diff) | |
download | sos-49e636b89e1d4599646925f6ea483d9d99c32043.tar.gz |
[ceph] collect ceph-volume lvm list
Ceph is moving from managing disks with ceph-disk to using ceph-volume
which uses LVM. So now collect the 'ceph-volume lvm list' output.
Resolves: #1889
Signed-off-by: Trent Lloyd <trent@lloyd.id.au>
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
-rw-r--r-- | sos/plugins/ceph.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/ceph.py b/sos/plugins/ceph.py index 43284bc8..0c0f71c8 100644 --- a/sos/plugins/ceph.py +++ b/sos/plugins/ceph.py @@ -68,7 +68,8 @@ class Ceph(Plugin, RedHatPlugin, UbuntuPlugin): "ceph-disk list", "ceph versions", "ceph osd crush dump", - "ceph -v" + "ceph -v", + "ceph-volume lvm list" ]) ceph_cmds = [ |