Collect a full lsblk output in the ramdisk logs
The existing lsblk call is very handy for an overview, but there a lot more useful pairs to collect. Collect them in a machine-readable format to be able to use in debugging and further development. Change-Id: Ib27843524421944ee93de975d275e93276a5597a
This commit is contained in:
parent
8111475eb0
commit
424e649bed
@ -429,10 +429,7 @@ class TestUtils(ironic_agent_base.IronicAgentTest):
|
|||||||
mock_outputs.assert_has_calls(calls, any_order=True)
|
mock_outputs.assert_has_calls(calls, any_order=True)
|
||||||
mock_gzip_b64.assert_called_once_with(
|
mock_gzip_b64.assert_called_once_with(
|
||||||
file_list=[],
|
file_list=[],
|
||||||
io_dict={'journal': mock.ANY, 'ip_addr': mock.ANY, 'ps': mock.ANY,
|
io_dict=mock.ANY)
|
||||||
'df': mock.ANY, 'iptables': mock.ANY, 'lshw': mock.ANY,
|
|
||||||
'lsblk': mock.ANY, 'mdstat': mock.ANY,
|
|
||||||
'mount': mock.ANY, 'parted': mock.ANY})
|
|
||||||
|
|
||||||
@mock.patch.object(utils, 'gzip_and_b64encode', autospec=True)
|
@mock.patch.object(utils, 'gzip_and_b64encode', autospec=True)
|
||||||
@mock.patch.object(utils, 'is_journalctl_present', autospec=True)
|
@mock.patch.object(utils, 'is_journalctl_present', autospec=True)
|
||||||
@ -457,10 +454,7 @@ class TestUtils(ironic_agent_base.IronicAgentTest):
|
|||||||
mock_outputs.assert_has_calls(calls, any_order=True)
|
mock_outputs.assert_has_calls(calls, any_order=True)
|
||||||
mock_gzip_b64.assert_called_once_with(
|
mock_gzip_b64.assert_called_once_with(
|
||||||
file_list=[tmp.name],
|
file_list=[tmp.name],
|
||||||
io_dict={'journal': mock.ANY, 'ip_addr': mock.ANY, 'ps': mock.ANY,
|
io_dict=mock.ANY)
|
||||||
'df': mock.ANY, 'iptables': mock.ANY, 'lshw': mock.ANY,
|
|
||||||
'lsblk': mock.ANY, 'mdstat': mock.ANY,
|
|
||||||
'mount': mock.ANY, 'parted': mock.ANY})
|
|
||||||
|
|
||||||
@mock.patch.object(utils, 'gzip_and_b64encode', autospec=True)
|
@mock.patch.object(utils, 'gzip_and_b64encode', autospec=True)
|
||||||
@mock.patch.object(utils, 'is_journalctl_present', autospec=True)
|
@mock.patch.object(utils, 'is_journalctl_present', autospec=True)
|
||||||
@ -480,10 +474,7 @@ class TestUtils(ironic_agent_base.IronicAgentTest):
|
|||||||
mock_outputs.assert_has_calls(calls, any_order=True)
|
mock_outputs.assert_has_calls(calls, any_order=True)
|
||||||
mock_gzip_b64.assert_called_once_with(
|
mock_gzip_b64.assert_called_once_with(
|
||||||
file_list=['/var/log'],
|
file_list=['/var/log'],
|
||||||
io_dict={'iptables': mock.ANY, 'ip_addr': mock.ANY, 'ps': mock.ANY,
|
io_dict=mock.ANY)
|
||||||
'dmesg': mock.ANY, 'df': mock.ANY, 'lshw': mock.ANY,
|
|
||||||
'lsblk': mock.ANY, 'mdstat': mock.ANY,
|
|
||||||
'mount': mock.ANY, 'parted': mock.ANY})
|
|
||||||
|
|
||||||
@mock.patch.object(utils, 'gzip_and_b64encode', autospec=True)
|
@mock.patch.object(utils, 'gzip_and_b64encode', autospec=True)
|
||||||
@mock.patch.object(utils, 'is_journalctl_present', autospec=True)
|
@mock.patch.object(utils, 'is_journalctl_present', autospec=True)
|
||||||
@ -507,10 +498,7 @@ class TestUtils(ironic_agent_base.IronicAgentTest):
|
|||||||
mock_outputs.assert_has_calls(calls, any_order=True)
|
mock_outputs.assert_has_calls(calls, any_order=True)
|
||||||
mock_gzip_b64.assert_called_once_with(
|
mock_gzip_b64.assert_called_once_with(
|
||||||
file_list=['/var/log', tmp.name],
|
file_list=['/var/log', tmp.name],
|
||||||
io_dict={'iptables': mock.ANY, 'ip_addr': mock.ANY, 'ps': mock.ANY,
|
io_dict=mock.ANY)
|
||||||
'dmesg': mock.ANY, 'df': mock.ANY, 'lshw': mock.ANY,
|
|
||||||
'lsblk': mock.ANY, 'mdstat': mock.ANY,
|
|
||||||
'mount': mock.ANY, 'parted': mock.ANY})
|
|
||||||
|
|
||||||
def test_get_ssl_client_options(self):
|
def test_get_ssl_client_options(self):
|
||||||
# defaults
|
# defaults
|
||||||
|
@ -68,6 +68,7 @@ COLLECT_LOGS_COMMANDS = {
|
|||||||
'ip_addr': ['ip', 'addr'],
|
'ip_addr': ['ip', 'addr'],
|
||||||
'lshw': ['lshw', '-quiet', '-json'],
|
'lshw': ['lshw', '-quiet', '-json'],
|
||||||
'lsblk': ['lsblk', '--all', '-o%s' % ','.join(LSBLK_COLUMNS)],
|
'lsblk': ['lsblk', '--all', '-o%s' % ','.join(LSBLK_COLUMNS)],
|
||||||
|
'lsblk-full': ['lsblk', '--all', '--bytes', '--output-all', '--pairs'],
|
||||||
'mdstat': ['cat', '/proc/mdstat'],
|
'mdstat': ['cat', '/proc/mdstat'],
|
||||||
'mount': ['mount'],
|
'mount': ['mount'],
|
||||||
'parted': ['parted', '-l'],
|
'parted': ['parted', '-l'],
|
||||||
|
5
releasenotes/notes/lsblk-all-956c1df808a169bf.yaml
Normal file
5
releasenotes/notes/lsblk-all-956c1df808a169bf.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
other:
|
||||||
|
- |
|
||||||
|
The ramdisk logs now contain an ``lsblk`` output with all pairs in the new
|
||||||
|
``lsblk-full`` file.
|
Loading…
Reference in New Issue
Block a user