
vnfd templates, parameter and config files are sent as yaml strings in requests body to tacker server. Change the attributes to dictionary objects. New behavior is applicable to tosca templates only. Also, this change may mangle the order of nodes in tosca templates. In order to address this concern and preserve the network interfaces order in these nodes, there will be follow on patch (on server) to addres this. Change-Id: I05a1d60dc643dca864aff559f37491914b1fcfc3 Partial-Bug: #1591361
121 lines
4.1 KiB
Python
121 lines
4.1 KiB
Python
# Copyright 2016 Brocade Communications Systems Inc
|
|
# All Rights Reserved.
|
|
#
|
|
#
|
|
# 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.
|
|
|
|
import yaml
|
|
|
|
from tackerclient.common import exceptions
|
|
from tackerclient.common import utils
|
|
from tackerclient.tacker import v1_0 as tackerV10
|
|
from tackerclient.tacker.v1_0.nfvo import vim_utils
|
|
|
|
_VIM = "vim"
|
|
|
|
|
|
class ListVIM(tackerV10.ListCommand):
|
|
"""List VIMs that belong to a given tenant."""
|
|
|
|
resource = _VIM
|
|
list_columns = ['id', 'tenant_id', 'name', 'type', 'description',
|
|
'auth_url', 'placement_attr', 'auth_cred', 'status']
|
|
|
|
|
|
class ShowVIM(tackerV10.ShowCommand):
|
|
"""Show information of a given VIM."""
|
|
|
|
resource = _VIM
|
|
|
|
|
|
class CreateVIM(tackerV10.CreateCommand):
|
|
"""Create a VIM."""
|
|
|
|
resource = _VIM
|
|
|
|
def add_known_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--config-file',
|
|
required=True,
|
|
help='Specify VIM specific config parameters in a file')
|
|
parser.add_argument(
|
|
'name', metavar='NAME',
|
|
help='Set a name for the VIM')
|
|
parser.add_argument(
|
|
'--description',
|
|
help='Set a description for the VIM')
|
|
parser.add_argument(
|
|
'--is-default',
|
|
action='store_true',
|
|
default=False,
|
|
help='Set as default VIM')
|
|
|
|
def args2body(self, parsed_args):
|
|
body = {self.resource: {}}
|
|
if parsed_args.config_file:
|
|
with open(parsed_args.config_file) as f:
|
|
vim_config = f.read()
|
|
config_param = yaml.load(vim_config, Loader=yaml.SafeLoader)
|
|
vim_obj = body[self.resource]
|
|
try:
|
|
auth_url = config_param.pop('auth_url')
|
|
except KeyError:
|
|
raise exceptions.TackerClientException(message='Auth URL must be '
|
|
'specified',
|
|
status_code=404)
|
|
vim_obj['auth_url'] = utils.validate_url(auth_url).geturl()
|
|
vim_obj['type'] = config_param.pop('type', 'openstack')
|
|
vim_utils.args2body_vim(config_param, vim_obj)
|
|
tackerV10.update_dict(parsed_args, body[self.resource],
|
|
['tenant_id', 'name', 'description',
|
|
'is_default'])
|
|
return body
|
|
|
|
|
|
class UpdateVIM(tackerV10.UpdateCommand):
|
|
"""Update a given VIM."""
|
|
|
|
resource = _VIM
|
|
|
|
def add_known_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--config-file',
|
|
help='Specify VIM specific config parameters in a file')
|
|
parser.add_argument(
|
|
'--is-default',
|
|
action='store_true',
|
|
default=False,
|
|
help='Set as default VIM')
|
|
|
|
def args2body(self, parsed_args):
|
|
body = {self.resource: {}}
|
|
# config arg passed as data overrides config yaml when both args passed
|
|
if parsed_args.config_file:
|
|
with open(parsed_args.config_file) as f:
|
|
config_yaml = f.read()
|
|
config_param = yaml.load(config_yaml)
|
|
if 'auth_url' in config_param:
|
|
raise exceptions.TackerClientException(message='Auth URL cannot '
|
|
'be updated',
|
|
status_code=404)
|
|
vim_obj = body[self.resource]
|
|
vim_utils.args2body_vim(config_param, vim_obj)
|
|
tackerV10.update_dict(parsed_args, body[self.resource],
|
|
['tenant_id', 'is_default'])
|
|
return body
|
|
|
|
|
|
class DeleteVIM(tackerV10.DeleteCommand):
|
|
"""Delete a given VIM."""
|
|
resource = _VIM
|