
At present the VNF mgmt IP address is assigned to parameter name of "mgmt_url". In this patch it is changed to "mgmt_ip_address" which will be relevant one Co-Authored-By: Dharmendra Kushwaha <dharmendra.kushwaha@india.nec.com> Change-Id: I621b71d4af96a4bfa0f27442efe4d302c5afa96d Partial-Bug: #1648327
42 lines
1.3 KiB
Python
42 lines
1.3 KiB
Python
# Copyright 2013, 2014 Intel Corporation.
|
|
# 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.
|
|
|
|
from oslo_log import log as logging
|
|
|
|
from tacker.vnfm.mgmt_drivers import abstract_driver
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
class VnfMgmtNoop(abstract_driver.VnfMGMTAbstractDriver):
|
|
def get_type(self):
|
|
return 'noop'
|
|
|
|
def get_name(self):
|
|
return 'noop'
|
|
|
|
def get_description(self):
|
|
return 'Tacker VNFMgmt Noop Driver'
|
|
|
|
def mgmt_ip_address(self, plugin, context, vnf):
|
|
LOG.debug('mgmt_ip_address %s', vnf)
|
|
return 'noop-mgmt-url'
|
|
|
|
def mgmt_call(self, plugin, context, vnf, kwargs):
|
|
LOG.debug('mgmt_call %(vnf)s %(kwargs)s',
|
|
{'vnf': vnf, 'kwargs': kwargs})
|