From 67c819eb6206d580e70fb6cd475f9e7e13318470 Mon Sep 17 00:00:00 2001 From: Hang Li Date: Mon, 23 Sep 2019 11:27:05 +0800 Subject: [PATCH] Eliminate unnecessary imported modules In the config project,"/sysinv/sysinv/sysinv/sysinv/helm/" directory has many files imported into the "log" but not used. At the same time,I built a system of simplex with the latest ISO of the community. When the system was built,the code was changed. The system worked well and the other functional modules were not affected.So I agree we should delete them. Change-Id: I7816e54e5a70fe2b2d2b65e7d3a6479378c224d1 Partial-Bug: #1844095 Signed-off-by: Hang Li --- sysinv/sysinv/sysinv/sysinv/helm/aodh.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/ceilometer.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/ceph_pools_audit.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/cinder.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/elasticsearch.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/filebeat.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/garbd.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/glance.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/gnocchi.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/heat.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/helm_toolkit.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/horizon.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/ingress.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/keystone.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/keystone_api_proxy.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/kibana.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/kube_state_metrics.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/libvirt.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/manifest_generic.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/manifest_platform.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/mariadb.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/memcached.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/metricbeat.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/nginx_ingress.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/nginx_ports_control.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/nova_api_proxy.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/openvswitch.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/panko.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/rbd_provisioner.py | 3 --- sysinv/sysinv/sysinv/sysinv/helm/swift.py | 3 --- 31 files changed, 93 deletions(-) diff --git a/sysinv/sysinv/sysinv/sysinv/helm/aodh.py b/sysinv/sysinv/sysinv/sysinv/helm/aodh.py index d4f3e24ea2..30030fa5cf 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/aodh.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/aodh.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class AodhHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the aodh chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/ceilometer.py b/sysinv/sysinv/sysinv/sysinv/helm/ceilometer.py index 2ce656907f..add42831b4 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/ceilometer.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/ceilometer.py @@ -7,12 +7,9 @@ from sysinv.common import constants from sysinv.common import exception from sysinv.common import utils -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class CeilometerHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the ceilometer chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/ceph_pools_audit.py b/sysinv/sysinv/sysinv/sysinv/helm/ceph_pools_audit.py index aaf6349162..e71a8e127c 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/ceph_pools_audit.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/ceph_pools_audit.py @@ -6,13 +6,10 @@ from sysinv.common import constants from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import base from sysinv.helm import common -LOG = logging.getLogger(__name__) - class CephPoolsAuditHelm(base.BaseHelm): """Class to encapsulate helm operations for the ceph-pools-audit chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/cinder.py b/sysinv/sysinv/sysinv/sysinv/helm/cinder.py index bda40ef764..b47ad73e06 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/cinder.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/cinder.py @@ -8,12 +8,9 @@ from sysinv.common import constants from sysinv.common import exception from sysinv.common.storage_backend_conf import StorageBackendConfig -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class CinderHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the cinder chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/elasticsearch.py b/sysinv/sysinv/sysinv/sysinv/helm/elasticsearch.py index 96e1f01b0a..94a3af2fd4 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/elasticsearch.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/elasticsearch.py @@ -4,14 +4,11 @@ # SPDX-License-Identifier: Apache-2.0 # -from oslo_log import log as logging from sysinv.common import exception from sysinv.common import utils from sysinv.helm import common from sysinv.helm import elastic -LOG = logging.getLogger(__name__) - class ElasticsearchHelm(elastic.ElasticBaseHelm): """Class to encapsulate helm operations for elasticsearch""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/filebeat.py b/sysinv/sysinv/sysinv/sysinv/helm/filebeat.py index 28364a7df6..b9803d4d0f 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/filebeat.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/filebeat.py @@ -4,13 +4,10 @@ # SPDX-License-Identifier: Apache-2.0 # -from oslo_log import log as logging from sysinv.common import exception from sysinv.helm import common from sysinv.helm import elastic -LOG = logging.getLogger(__name__) - class FilebeatHelm(elastic.ElasticBaseHelm): """Class to encapsulate helm operations for filebeat""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/garbd.py b/sysinv/sysinv/sysinv/sysinv/helm/garbd.py index c8adf1e80c..ab30b98300 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/garbd.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/garbd.py @@ -7,12 +7,9 @@ from sysinv.common import constants from sysinv.common import exception from sysinv.common import utils -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import base -LOG = logging.getLogger(__name__) - class GarbdHelm(base.BaseHelm): """Class to encapsulate helm operations for the galera arbitrator chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/glance.py b/sysinv/sysinv/sysinv/sysinv/helm/glance.py index ac87a5b112..19e5b5f57b 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/glance.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/glance.py @@ -8,12 +8,9 @@ from sysinv.common import constants from sysinv.common import exception from sysinv.common.storage_backend_conf import StorageBackendConfig -from sysinv.openstack.common import log as logging - from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) # Info used in the Glance Helm chart. RBD_STORE_USER = 'images' diff --git a/sysinv/sysinv/sysinv/sysinv/helm/gnocchi.py b/sysinv/sysinv/sysinv/sysinv/helm/gnocchi.py index 66da0fea6b..35e071812e 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/gnocchi.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/gnocchi.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class GnocchiHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the gnocchi chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/heat.py b/sysinv/sysinv/sysinv/sysinv/helm/heat.py index f067688061..6384f31e1e 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/heat.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/heat.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class HeatHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the heat chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/helm_toolkit.py b/sysinv/sysinv/sysinv/sysinv/helm/helm_toolkit.py index f448f9360a..ab0726de3c 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/helm_toolkit.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/helm_toolkit.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import base -LOG = logging.getLogger(__name__) - class HelmToolkitHelm(base.BaseHelm): """Class to encapsulate helm operations for the helm toolkit""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/horizon.py b/sysinv/sysinv/sysinv/sysinv/helm/horizon.py index 1373299458..8fb22a8b4a 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/horizon.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/horizon.py @@ -6,12 +6,9 @@ from sysinv.common import constants from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class HorizonHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the horizon chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/ingress.py b/sysinv/sysinv/sysinv/sysinv/helm/ingress.py index 92dd683f18..f8cb0a831c 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/ingress.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/ingress.py @@ -6,12 +6,9 @@ from sysinv.common import constants from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import base -LOG = logging.getLogger(__name__) - class IngressHelm(base.BaseHelm): """Class to encapsulate helm operations for the ingress chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/keystone.py b/sysinv/sysinv/sysinv/sysinv/helm/keystone.py index 92e6765e13..bf2a523618 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/keystone.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/keystone.py @@ -9,12 +9,9 @@ import os from sysinv.common import constants from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - OPENSTACK_PASSWORD_RULES_FILE = '/etc/keystone/password-rules.conf' diff --git a/sysinv/sysinv/sysinv/sysinv/helm/keystone_api_proxy.py b/sysinv/sysinv/sysinv/sysinv/helm/keystone_api_proxy.py index 603a3c2862..c22c791e78 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/keystone_api_proxy.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/keystone_api_proxy.py @@ -6,12 +6,9 @@ from sysinv.common import constants from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class KeystoneApiProxyHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the keystone api proxy chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/kibana.py b/sysinv/sysinv/sysinv/sysinv/helm/kibana.py index fe19fb82e5..1e1a40be1c 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/kibana.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/kibana.py @@ -4,13 +4,10 @@ # SPDX-License-Identifier: Apache-2.0 # -from oslo_log import log as logging from sysinv.common import exception from sysinv.helm import common from sysinv.helm import elastic -LOG = logging.getLogger(__name__) - class KibanaHelm(elastic.ElasticBaseHelm): """Class to encapsulate helm operations for kibana""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/kube_state_metrics.py b/sysinv/sysinv/sysinv/sysinv/helm/kube_state_metrics.py index 8114c758db..3b14b3829a 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/kube_state_metrics.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/kube_state_metrics.py @@ -4,13 +4,10 @@ # SPDX-License-Identifier: Apache-2.0 # -from oslo_log import log as logging from sysinv.common import exception from sysinv.helm import common from sysinv.helm import elastic -LOG = logging.getLogger(__name__) - class KubeStateMetricsHelm(elastic.ElasticBaseHelm): """Class to encapsulate helm operations for kube-state-metrics""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/libvirt.py b/sysinv/sysinv/sysinv/sysinv/helm/libvirt.py index 63282e710c..026722f9e9 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/libvirt.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/libvirt.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class LibvirtHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the libvirt chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/manifest_generic.py b/sysinv/sysinv/sysinv/sysinv/helm/manifest_generic.py index 405868b2cf..677ce4fca3 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/manifest_generic.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/manifest_generic.py @@ -10,9 +10,6 @@ """ System inventory Armada manifest operator.""" from sysinv.helm import manifest_base as base -from sysinv.openstack.common import log as logging - -LOG = logging.getLogger(__name__) class GenericArmadaManifestOperator(base.ArmadaManifestOperator): diff --git a/sysinv/sysinv/sysinv/sysinv/helm/manifest_platform.py b/sysinv/sysinv/sysinv/sysinv/helm/manifest_platform.py index 545f71ab90..c8d3334627 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/manifest_platform.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/manifest_platform.py @@ -13,9 +13,6 @@ from sysinv.common import constants from sysinv.helm import manifest_base as base from sysinv.helm.ceph_pools_audit import CephPoolsAuditHelm from sysinv.helm.rbd_provisioner import RbdProvisionerHelm -from sysinv.openstack.common import log as logging - -LOG = logging.getLogger(__name__) class PlatformArmadaManifestOperator(base.ArmadaManifestOperator): diff --git a/sysinv/sysinv/sysinv/sysinv/helm/mariadb.py b/sysinv/sysinv/sysinv/sysinv/helm/mariadb.py index 4ab25b4080..b115824859 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/mariadb.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/mariadb.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class MariadbHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the mariadb chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/memcached.py b/sysinv/sysinv/sysinv/sysinv/helm/memcached.py index ffa7f562ad..c4c0ad89aa 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/memcached.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/memcached.py @@ -6,12 +6,9 @@ from sysinv.common import constants from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import base -LOG = logging.getLogger(__name__) - class MemcachedHelm(base.BaseHelm): """Class to encapsulate helm operations for the memcached chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/metricbeat.py b/sysinv/sysinv/sysinv/sysinv/helm/metricbeat.py index 67f3380a63..6fde363568 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/metricbeat.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/metricbeat.py @@ -4,13 +4,10 @@ # SPDX-License-Identifier: Apache-2.0 # -from oslo_log import log as logging from sysinv.common import exception from sysinv.helm import common from sysinv.helm import elastic -LOG = logging.getLogger(__name__) - class MetricbeatHelm(elastic.ElasticBaseHelm): """Class to encapsulate helm operations for metricbeat""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/nginx_ingress.py b/sysinv/sysinv/sysinv/sysinv/helm/nginx_ingress.py index 608fc00306..a6f8f9c67c 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/nginx_ingress.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/nginx_ingress.py @@ -4,13 +4,10 @@ # SPDX-License-Identifier: Apache-2.0 # -from oslo_log import log as logging from sysinv.common import exception from sysinv.helm import common from sysinv.helm import elastic -LOG = logging.getLogger(__name__) - class NginxIngressHelm(elastic.ElasticBaseHelm): """Class to encapsulate helm operations for nginx-ingress""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/nginx_ports_control.py b/sysinv/sysinv/sysinv/sysinv/helm/nginx_ports_control.py index 1835428b48..2df754cac0 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/nginx_ports_control.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/nginx_ports_control.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import base -LOG = logging.getLogger(__name__) - class NginxPortsControlHelm(base.BaseHelm): """Class to encapsulate helm operations for nginx-ports-control chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/nova_api_proxy.py b/sysinv/sysinv/sysinv/sysinv/helm/nova_api_proxy.py index 101e119a71..e2e60520d0 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/nova_api_proxy.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/nova_api_proxy.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class NovaApiProxyHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the nova chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/openvswitch.py b/sysinv/sysinv/sysinv/sysinv/helm/openvswitch.py index 2950fc6ee5..83e53d534b 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/openvswitch.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/openvswitch.py @@ -7,12 +7,9 @@ from sysinv.common import constants from sysinv.common import exception from sysinv.common import utils -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class OpenvswitchHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the openvswitch chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/panko.py b/sysinv/sysinv/sysinv/sysinv/helm/panko.py index 212289f6af..def671725c 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/panko.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/panko.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class PankoHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the panko chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py b/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py index 1bf9285266..d0e9a79ce8 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/rabbitmq.py @@ -5,12 +5,9 @@ # from sysinv.common import exception -from sysinv.openstack.common import log as logging from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) - class RabbitmqHelm(openstack.OpenstackBaseHelm): """Class to encapsulate helm operations for the rabbitmq chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/rbd_provisioner.py b/sysinv/sysinv/sysinv/sysinv/helm/rbd_provisioner.py index c0905e8a4b..5ee98844ee 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/rbd_provisioner.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/rbd_provisioner.py @@ -7,13 +7,10 @@ from sysinv.common import constants from sysinv.common import exception from sysinv.common.storage_backend_conf import K8RbdProvisioner -from sysinv.openstack.common import log as logging from sysinv.helm import base from sysinv.helm import common -LOG = logging.getLogger(__name__) - class RbdProvisionerHelm(base.BaseHelm): """Class to encapsulate helm operations for the rbd-provisioner chart""" diff --git a/sysinv/sysinv/sysinv/sysinv/helm/swift.py b/sysinv/sysinv/sysinv/sysinv/helm/swift.py index 5ac8e31d69..9579d31731 100644 --- a/sysinv/sysinv/sysinv/sysinv/helm/swift.py +++ b/sysinv/sysinv/sysinv/sysinv/helm/swift.py @@ -6,12 +6,9 @@ from sysinv.common import exception -from sysinv.openstack.common import log as logging - from sysinv.helm import common from sysinv.helm import openstack -LOG = logging.getLogger(__name__) # These are set in hiera data and applied via puppet to the radosgw RADOSGW_SERVICE_DOMAIN_NAME = 'service'