summaryrefslogtreecommitdiff
path: root/openstackclient/compute
diff options
context:
space:
mode:
authorDiwei Zhu <zhu.diw@northeastern.edu>2021-10-28 02:16:23 +0000
committerDiwei Zhu <zhu.diw@northeastern.edu>2021-11-14 15:23:36 +0000
commit2183a611475090347863917f6c90f0f38cd80893 (patch)
treea930e9c56e129168c18f67092852011ccf747192 /openstackclient/compute
parentf824e13bc5754d3de108d39d62de3d6cfae2670c (diff)
downloadpython-openstackclient-2183a611475090347863917f6c90f0f38cd80893.tar.gz
Switch openstack server add port/network to using sdk.
The old novaclient.v2.server.Server.interface_attach() method is replaced with proxy.create_server_interface(). In swargs, 'net_id' and 'port_id' are mutual-exclusive, if one of them is given with value, the other one cannot be None, as the API would responde with 400 (None is not string). In unit test, temporary method 'setup_sdk_servers_mock' is added, because other tests are still using the old 'setup_servers_mock'. Functional tests are added. Releasenote is generated. Change-Id: I9899f0509febc5143560a1859ae6344d0a6d1427
Diffstat (limited to 'openstackclient/compute')
-rw-r--r--openstackclient/compute/v2/server.py23
1 files changed, 11 insertions, 12 deletions
diff --git a/openstackclient/compute/v2/server.py b/openstackclient/compute/v2/server.py
index c11f4b57..fcd7d69c 100644
--- a/openstackclient/compute/v2/server.py
+++ b/openstackclient/compute/v2/server.py
@@ -27,6 +27,7 @@ import iso8601
from novaclient import api_versions
from novaclient.v2 import servers
from openstack import exceptions as sdk_exceptions
+from openstack import utils as sdk_utils
from osc_lib.cli import format_columns
from osc_lib.cli import parseractions
from osc_lib.command import command
@@ -378,10 +379,10 @@ class AddPort(command.Command):
return parser
def take_action(self, parsed_args):
- compute_client = self.app.client_manager.compute
+ compute_client = self.app.client_manager.sdk_connection.compute
- server = utils.find_resource(
- compute_client.servers, parsed_args.server)
+ server = compute_client.find_server(
+ parsed_args.server, ignore_missing=False)
if self.app.client_manager.is_network_endpoint_enabled():
network_client = self.app.client_manager.network
@@ -392,12 +393,11 @@ class AddPort(command.Command):
kwargs = {
'port_id': port_id,
- 'net_id': None,
'fixed_ip': None,
}
if parsed_args.tag:
- if compute_client.api_version < api_versions.APIVersion("2.49"):
+ if not sdk_utils.supports_microversion(compute_client, '2.49'):
msg = _(
'--os-compute-api-version 2.49 or greater is required to '
'support the --tag option'
@@ -405,7 +405,7 @@ class AddPort(command.Command):
raise exceptions.CommandError(msg)
kwargs['tag'] = parsed_args.tag
- server.interface_attach(**kwargs)
+ compute_client.create_server_interface(server, **kwargs)
class AddNetwork(command.Command):
@@ -434,10 +434,10 @@ class AddNetwork(command.Command):
return parser
def take_action(self, parsed_args):
- compute_client = self.app.client_manager.compute
+ compute_client = self.app.client_manager.sdk_connection.compute
- server = utils.find_resource(
- compute_client.servers, parsed_args.server)
+ server = compute_client.find_server(
+ parsed_args.server, ignore_missing=False)
if self.app.client_manager.is_network_endpoint_enabled():
network_client = self.app.client_manager.network
@@ -447,13 +447,12 @@ class AddNetwork(command.Command):
net_id = parsed_args.network
kwargs = {
- 'port_id': None,
'net_id': net_id,
'fixed_ip': None,
}
if parsed_args.tag:
- if compute_client.api_version < api_versions.APIVersion('2.49'):
+ if not sdk_utils.supports_microversion(compute_client, '2.49'):
msg = _(
'--os-compute-api-version 2.49 or greater is required to '
'support the --tag option'
@@ -462,7 +461,7 @@ class AddNetwork(command.Command):
kwargs['tag'] = parsed_args.tag
- server.interface_attach(**kwargs)
+ compute_client.create_server_interface(server, **kwargs)
class AddServerSecurityGroup(command.Command):