diff options
author | Rabi Mishra <ramishra@redhat.com> | 2020-04-24 10:11:48 +0530 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-06-03 15:05:23 -0400 |
commit | 5d92bf688acc15eea6601682cb2970141212fdc9 (patch) | |
tree | ccec1f862e59e6562a89a04e2297fd4e9c87e4cd | |
parent | f7292b0121408a77d9e5ee94a046025c256cd021 (diff) | |
download | sos-5d92bf688acc15eea6601682cb2970141212fdc9.tar.gz |
[openstack_instack] Add config-download location
With the removal of mistral from undercloud, we would be
using $HOME/config-download for the config downloaded playbooks.
Added it to the collected locations on undercloud.
Also collects ansible.log from the new location $HOME.
Resolves: #2031
Signed-off-by: Rabi Mishra <ramishra@redhat.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/report/plugins/openstack_instack.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/report/plugins/openstack_instack.py b/sos/report/plugins/openstack_instack.py index 04862b2d..63a261f4 100644 --- a/sos/report/plugins/openstack_instack.py +++ b/sos/report/plugins/openstack_instack.py @@ -21,9 +21,10 @@ NON_CONTAINERIZED_DEPLOY = [ ] CONTAINERIZED_DEPLOY = [ '/var/log/heat-launcher/', + '/home/stack/ansible.log', + '/home/stack/config-download/', '/home/stack/install-undercloud.log', '/home/stack/undercloud-install-*.tar.bzip2', - '/var/lib/mistral/config-download-latest/ansible.log', '/home/stack/.tripleo/history', '/var/lib/tripleo-config/', '/var/log/tripleo-container-image-prepare.log', |