Switch non-OpenStack helm charts to "BaseHelm" base class

The mariadb and memcached charts are not really part of OpenStack
itself, so change them to use the "BaseHelm" base class instead of
the "OpenstackBaseHelm" base class.

Change-Id: I4a74eb96bd2191eaf28573c1feda801b966e6d27
Story: 2003909
Task: 27086
Signed-off-by: Chris Friesen <chris.friesen@windriver.com>
This commit is contained in:
Chris Friesen 2018-10-18 16:42:08 -06:00
parent f7df12c09b
commit 7fafb8477b
2 changed files with 4 additions and 4 deletions

View File

@ -8,12 +8,12 @@ from sysinv.common import constants
from sysinv.common import exception
from sysinv.openstack.common import log as logging
from . import common
from . import openstack
from . import base
LOG = logging.getLogger(__name__)
class MariadbHelm(openstack.OpenstackBaseHelm):
class MariadbHelm(base.BaseHelm):
"""Class to encapsulate helm operations for the mariadb chart"""
CHART = constants.HELM_CHART_MARIADB

View File

@ -8,12 +8,12 @@ from sysinv.common import constants
from sysinv.common import exception
from sysinv.openstack.common import log as logging
from . import common
from . import openstack
from . import base
LOG = logging.getLogger(__name__)
class MemcachedHelm(openstack.OpenstackBaseHelm):
class MemcachedHelm(base.BaseHelm):
"""Class to encapsulate helm operations for the memcached chart"""
CHART = constants.HELM_CHART_MEMCACHED