Relocate and rename kubecli.py

Rename kubecli.py to kube_utils.py and move it to
conductor/handlers/common

Change-Id: I0fba770a2ff337c38e3ca1a9d4d6bef80b5ba965
This commit is contained in:
Jay Lau (Guangya Liu) 2014-12-30 19:26:26 -05:00
parent 5bbfeaea6d
commit 01e4d151e6
3 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
"""Magnum Kubernetes RPC handler."""
from magnum.conductor import kubecli
from magnum.conductor.handlers.common import kube_utils
from magnum.openstack.common import log as logging
LOG = logging.getLogger(__name__)
@ -29,7 +29,7 @@ class Handler(object):
def __init__(self):
super(Handler, self).__init__()
self.kube_cli = kubecli.KubeClient()
self.kube_cli = kube_utils.KubeClient()
def service_create(self, context, service):
LOG.debug("service_create")