python-magnumclient/magnumclient/v1/shell.py
Tom Cammann 820b50d33f Remove k8s pods, rcs, svc and container API calls
Magnum supports multiple COEs however it contains APIs that only work
with Kubernetes. We will allow additional API extensions for specific
bay drivers to allow access to the k8s APIs through Magnum. This will
allow us to support multiple COEs without having to compromise the
container API to the lowest common denominator between COEs.

Change-Id: Ic6927f77f413f5202a3dd160ff809c7ec057d3b5
2016-04-29 12:27:29 -05:00

27 lines
870 B
Python

# Copyright 2014
# The Cloudscaling Group, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from magnumclient.v1 import baymodels_shell
from magnumclient.v1 import bays_shell
from magnumclient.v1 import certificates_shell
from magnumclient.v1 import mservices_shell
COMMAND_MODULES = [
baymodels_shell,
bays_shell,
certificates_shell,
mservices_shell,
]