diff options
author | Lee Yarwood <lyarwood@redhat.com> | 2015-07-07 13:15:19 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2015-09-25 21:07:09 +0100 |
commit | a1eb23241c06c2d295a11a82a419c6e9cf81a71d (patch) | |
tree | a2f8eff2bb41b366d67d4df201a1d55e0dbb8a00 | |
parent | 887fc720db5eb980088f771187311e85e04598f9 (diff) | |
download | sos-a1eb23241c06c2d295a11a82a419c6e9cf81a71d.tar.gz |
[openstack] New openstack_instack plugin.
Add a new plugin for instack [1] and instack-undercloud [2].
These two components are currently used to drive the deployment of
the undercloud in RDO Manager and RHEL OSP director environments.
Instack itself is considered low level tooling and is in turn called
by higher level user applications such as the RDO Manager Openstack
client plugin [3].
This plugin also adds a new openstack_undercloud profile to be used
to tag simillar Openstack plugins that are only found in the undercloud.
[1] https://github.com/rdo-management/instack
[2] https://github.com/rdo-management/instack-undercloud
[3] https://github.com/rdo-management/python-rdomanager-oscplugin
Resolves #620.
Signed-off-by: Lee Yarwood <lyarwood@redhat.com>
-rw-r--r-- | sos/plugins/openstack_instack.py | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/sos/plugins/openstack_instack.py b/sos/plugins/openstack_instack.py new file mode 100644 index 00000000..8213400d --- /dev/null +++ b/sos/plugins/openstack_instack.py @@ -0,0 +1,75 @@ +# Copyright (C) 2015 Red Hat, Inc., Lee Yarwood <lyarwood@redhat.com> + +# 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 OpenStackInstack(Plugin): + """OpenStack Instack + """ + plugin_name = "openstack_instack" + profiles = ('openstack', 'openstack_undercloud') + + def setup(self): + self.add_copy_spec("/home/stack/.instack/install-undercloud.log") + self.add_copy_spec("/home/stack/instackenv.json") + self.add_copy_spec("/home/stack/undercloud.conf") + + def postproc(self): + protected_keys = [ + "UNDERCLOUD_TUSKAR_PASSWORD", "UNDERCLOUD_ADMIN_PASSWORD", + "UNDERCLOUD_CEILOMETER_METERING_SECRET", + "UNDERCLOUD_CEILOMETER_PASSWORD", + "UNDERCLOUD_CEILOMETER_SNMPD_PASSWORD", + "UNDERCLOUD_DB_PASSWORD", "UNDERCLOUD_GLANCE_PASSWORD", + "UNDERCLOUD_HEAT_PASSWORD", + "UNDERCLOUD_HEAT_STACK_DOMAIN_ADMIN_PASSWORD", + "UNDERCLOUD_HORIZON_SECRET_KEY", "UNDERCLOUD_IRONIC_PASSWORD", + "UNDERCLOUD_NEUTRON_PASSWORD", "UNDERCLOUD_NOVA_PASSWORD", + "UNDERCLOUD_RABBIT_PASSWORD", "UNDERCLOUD_SWIFT_PASSWORD", + "UNDERCLOUD_TUSKAR_PASSWORD", "OS_PASSWORD", + "undercloud_db_password", "undercloud_admin_password", + "undercloud_glance_password", "undercloud_heat_password", + "undercloud_neutron_password", "undercloud_nova_password", + "undercloud_ironic_password", "undercloud_tuskar_password", + "undercloud_ceilometer_password", + "undercloud_ceilometer_metering_secret", + "undercloud_ceilometer_snmpd_password", + "undercloud_swift_password", "undercloud_rabbit_password", + "undercloud_heat_stack_domain_admin_password" + ] + regexp = r"((?m)(%s)=)(.*)" % "|".join(protected_keys) + self.do_file_sub("/home/stack/.instack/install-undercloud.log", + regexp, r"\1*********") + self.do_file_sub("/home/stack/undercloud.conf", regexp, r"\1*********") + + protected_json_keys = ["pm_password", "ssh-key", "password"] + json_regexp = r'((?m)"(%s)": )(".*?")' % "|".join(protected_json_keys) + self.do_file_sub("/home/stack/instackenv.json", json_regexp, + r"\1*********") + + +class RedHatOpenStackRDOManager(OpenStackInstack, RedHatPlugin): + + packages = [ + 'instack', + 'instack-undercloud', + ] + + def setup(self): + super(RedHatOpenStackRDOManager, self).setup() + +# vim: set et ts=4 sw=4 : |