
python-tackerclient has been modified to invoke Tacker MANO API directly for VNF and VNFD resource requests. The current wrapper implementation of invoking servicevm REST APIs has been removed. Change-Id: I447fd971d97987911d5e85abafc94a24599ac209 Implements: blueprint tacker-api-mano Depends-On: I9dffd4bee25b1f49aea7478f2bd779cf0f6dfb49
128 lines
4.0 KiB
Python
128 lines
4.0 KiB
Python
#
|
|
# Copyright 2013 Intel
|
|
# Copyright 2013 Isaku Yamahata <isaku.yamahata at intel com>
|
|
# <isaku.yamahata at gmail com>
|
|
# 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.
|
|
#
|
|
# @author: Isaku Yamahata, Intel
|
|
|
|
from tackerclient.tacker import v1_0 as tackerV10
|
|
|
|
|
|
_VNF = 'vnf'
|
|
|
|
|
|
class ListVNF(tackerV10.ListCommand):
|
|
"""List device that belong to a given tenant."""
|
|
|
|
resource = _VNF
|
|
list_columns = ['id', 'name', 'description', 'mgmt_url', 'status']
|
|
|
|
|
|
class ShowVNF(tackerV10.ShowCommand):
|
|
"""show information of a given VNF."""
|
|
|
|
resource = _VNF
|
|
|
|
|
|
class CreateVNF(tackerV10.CreateCommand):
|
|
"""create a VNF."""
|
|
|
|
resource = _VNF
|
|
remove_output_fields = ["attributes"]
|
|
|
|
def add_known_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--name',
|
|
help='Set a name for the vnf')
|
|
group = parser.add_mutually_exclusive_group(required=True)
|
|
group.add_argument(
|
|
'--vnfd-id',
|
|
help='VNFD ID to use as template to create VNF')
|
|
group.add_argument(
|
|
'--vnfd-name',
|
|
help='VNFD Name to use as template to create VNF')
|
|
parser.add_argument(
|
|
'--config-file',
|
|
help='specify config yaml file')
|
|
parser.add_argument(
|
|
'--config',
|
|
help='specify config yaml file')
|
|
parser.add_argument(
|
|
'--param-file',
|
|
help='specify parameter yaml file'
|
|
)
|
|
|
|
def args2body(self, parsed_args):
|
|
args = {'attributes': {}}
|
|
body = {self.resource: args}
|
|
# 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()
|
|
args['attributes']['config'] = config_yaml
|
|
if parsed_args.config:
|
|
args['attributes']['config'] = parsed_args.config
|
|
|
|
if parsed_args.vnfd_name:
|
|
tacker_client = self.get_client()
|
|
tacker_client.format = parsed_args.request_format
|
|
|
|
_id = tackerV10.find_resourceid_by_name_or_id(
|
|
tacker_client, 'vnfd',
|
|
parsed_args.vnfd_name)
|
|
|
|
parsed_args.vnfd_id = _id
|
|
if parsed_args.param_file:
|
|
with open(parsed_args.param_file) as f:
|
|
param_yaml = f.read()
|
|
args['attributes']['param_values'] = param_yaml
|
|
tackerV10.update_dict(parsed_args, body[self.resource],
|
|
['tenant_id', 'name', 'vnfd_id'])
|
|
return body
|
|
|
|
|
|
class UpdateVNF(tackerV10.UpdateCommand):
|
|
"""Update a given VNF."""
|
|
|
|
resource = _VNF
|
|
|
|
def add_known_arguments(self, parser):
|
|
parser.add_argument(
|
|
'--config-file',
|
|
help='specify config yaml file')
|
|
parser.add_argument(
|
|
'--config',
|
|
help='specify config yaml file')
|
|
|
|
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()
|
|
body[self.resource]['attributes'] = {'config': config_yaml}
|
|
if parsed_args.config:
|
|
body[self.resource]['attributes'] = {'config': parsed_args.config}
|
|
tackerV10.update_dict(parsed_args, body[self.resource], ['tenant_id'])
|
|
return body
|
|
|
|
|
|
class DeleteVNF(tackerV10.DeleteCommand):
|
|
"""Delete a given VNF."""
|
|
|
|
resource = _VNF
|