1bf9bd005a
Change-Id: I9d4b32c9e93d3c450a2d90366e07a6c4c0f59f8d
161 lines
5.3 KiB
Python
161 lines
5.3 KiB
Python
# Copyright 2015 Cisco Systems.
|
|
#
|
|
# 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 __future__ import absolute_import
|
|
import logging
|
|
from magnumclient.v1 import client as magnum_client
|
|
|
|
from horizon import exceptions
|
|
from horizon.utils.memoized import memoized
|
|
from openstack_dashboard.api import base
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
BAYMODEL_CREATE_ATTRS = ['name', 'image_id', 'flavor_id', 'master_flavor_id',
|
|
'keypair_id', 'external_network_id', 'fixed_network',
|
|
'dns_nameserver', 'docker_volume_size', 'labels',
|
|
'coe', 'http_proxy',
|
|
'https_proxy', 'no_proxy', 'network_driver',
|
|
'volume_driver',
|
|
'public', 'registry_enabled', 'tls_disabled']
|
|
|
|
BAY_CREATE_ATTRS = ['name', 'baymodel_id', 'node_count', 'discovery_url',
|
|
'bay_create_timeout', 'master_count']
|
|
|
|
|
|
@memoized
|
|
def magnumclient(request):
|
|
magnum_url = ""
|
|
try:
|
|
magnum_url = base.url_for(request, 'container')
|
|
except exceptions.ServiceCatalogException:
|
|
LOG.debug('No Containers service is configured.')
|
|
return None
|
|
|
|
LOG.debug('magnumclient connection created using the token "%s" and url'
|
|
'"%s"' % (request.user.token.id, magnum_url))
|
|
c = magnum_client.Client(username=request.user.username,
|
|
project_id=request.user.tenant_id,
|
|
input_auth_token=request.user.token.id,
|
|
magnum_url=magnum_url)
|
|
return c
|
|
|
|
|
|
def baymodel_create(request, **kwargs):
|
|
args = {}
|
|
for (key, value) in kwargs.items():
|
|
if key in BAYMODEL_CREATE_ATTRS:
|
|
args[str(key)] = str(value)
|
|
else:
|
|
raise exceptions.InvalidAttribute(
|
|
"Key must be in %s" % ",".join(BAYMODEL_CREATE_ATTRS))
|
|
if key == "labels":
|
|
labels = {}
|
|
vals = value.split(",")
|
|
for v in vals:
|
|
kv = v.split("=", 1)
|
|
labels[kv[0]] = kv[1]
|
|
args["labels"] = labels
|
|
return magnumclient(request).baymodels.create(**args)
|
|
|
|
|
|
def baymodel_delete(request, id):
|
|
return magnumclient(request).baymodels.delete(id)
|
|
|
|
|
|
def baymodel_list(request, limit=None, marker=None, sort_key=None,
|
|
sort_dir=None, detail=True):
|
|
return magnumclient(request).baymodels.list(limit, marker, sort_key,
|
|
sort_dir, detail)
|
|
|
|
|
|
def baymodel_show(request, id):
|
|
return magnumclient(request).baymodels.get(id)
|
|
|
|
|
|
def bay_create(request, **kwargs):
|
|
args = {}
|
|
for (key, value) in kwargs.items():
|
|
if key in BAY_CREATE_ATTRS:
|
|
args[key] = value
|
|
else:
|
|
raise exceptions.InvalidAttribute(
|
|
"Key must be in %s" % ",".join(BAY_CREATE_ATTRS))
|
|
return magnumclient(request).bays.create(**args)
|
|
|
|
|
|
def bay_update(request, id, patch):
|
|
return magnumclient(request).bays.update(id, patch)
|
|
|
|
|
|
def bay_delete(request, id):
|
|
return magnumclient(request).bays.delete(id)
|
|
|
|
|
|
def bay_list(request, limit=None, marker=None, sort_key=None,
|
|
sort_dir=None, detail=True):
|
|
return magnumclient(request).bays.list(limit, marker, sort_key,
|
|
sort_dir, detail)
|
|
|
|
|
|
def bay_show(request, id):
|
|
return magnumclient(request).bays.get(id)
|
|
|
|
|
|
def container_create(request, bay_uuid, **kwargs):
|
|
"""Creates a container object
|
|
|
|
:param request: Request context
|
|
:param bay_uuid: ID of a bay (Required)
|
|
:param kwargs: Image ID, Name, Command, Memory
|
|
:returns: Container object
|
|
"""
|
|
return magnumclient(request).containers.create(bay_uuid=bay_uuid, **kwargs)
|
|
|
|
|
|
def container_delete(request, id):
|
|
"""Deletes a container
|
|
|
|
:param request: Request context
|
|
:param id: The ID of the container to delete
|
|
"""
|
|
magnumclient(request).containers.delete(id)
|
|
|
|
|
|
def container_list(request, marker=None, limit=None, sort_key=None,
|
|
sort_dir=None, detail=False):
|
|
"""Lists all containers
|
|
|
|
:param request: Request context
|
|
:param marker: Optional, ID of last container in previous results
|
|
:param limit: '==0' return all, '> 0' specifies max, None respects max
|
|
imposed by Magnum API
|
|
:param sort_key: Optional, key to sort by
|
|
:param sort_dir: Optional, direction of sorting ('asc' or 'desc')
|
|
:param detail: Optional, boolean, return detailed info about containers
|
|
"""
|
|
return magnumclient(request).containers.list(
|
|
marker=marker, limit=limit, sort_key=sort_key, sort_dir=sort_dir,
|
|
detail=detail)
|
|
|
|
|
|
def container_show(request, id):
|
|
"""Get an individual container
|
|
|
|
:param request: Request context
|
|
:param id: ID of the container to get
|
|
"""
|
|
return magnumclient(request).containers.get(id)
|