2013-09-18 22:38:25 +01:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
"""
|
2014-11-20 00:20:30 +00:00
|
|
|
Command-line interface to the OpenStack Bare Metal Provisioning API.
|
2013-09-18 22:38:25 +01:00
|
|
|
"""
|
|
|
|
|
2013-11-06 10:28:00 +01:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
import argparse
|
2014-10-16 13:46:33 -04:00
|
|
|
import getpass
|
2013-09-18 22:38:25 +01:00
|
|
|
import logging
|
2017-01-20 23:18:15 +08:00
|
|
|
import os
|
|
|
|
import pkgutil
|
|
|
|
import re
|
2013-09-18 22:38:25 +01:00
|
|
|
import sys
|
|
|
|
|
2016-02-03 16:20:06 +02:00
|
|
|
from keystoneauth1.loading import session as kasession
|
2015-02-05 15:11:22 +08:00
|
|
|
from oslo_utils import encodeutils
|
2016-11-02 11:22:37 +08:00
|
|
|
from oslo_utils import importutils
|
2015-02-05 15:11:22 +08:00
|
|
|
import six
|
2013-11-11 12:09:16 +01:00
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
import ironicclient
|
2017-01-20 23:18:15 +08:00
|
|
|
from ironicclient.common.apiclient import exceptions
|
2015-11-12 14:03:40 +08:00
|
|
|
from ironicclient.common import cliutils
|
2015-04-16 14:43:46 +02:00
|
|
|
from ironicclient.common import http
|
2015-03-10 00:31:46 +01:00
|
|
|
from ironicclient.common.i18n import _
|
2013-09-18 22:38:25 +01:00
|
|
|
from ironicclient.common import utils
|
|
|
|
from ironicclient import exc
|
|
|
|
|
|
|
|
|
2015-02-13 10:47:16 +08:00
|
|
|
LATEST_API_VERSION = ('1', 'latest')
|
|
|
|
|
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
class IronicShell(object):
|
|
|
|
|
|
|
|
def get_base_parser(self):
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
prog='ironic',
|
|
|
|
description=__doc__.strip(),
|
2016-08-01 12:04:38 +08:00
|
|
|
epilog=_('See "ironic help COMMAND" '
|
|
|
|
'for help on a specific command.'),
|
2013-09-18 22:38:25 +01:00
|
|
|
add_help=False,
|
|
|
|
formatter_class=HelpFormatter,
|
|
|
|
)
|
|
|
|
|
2015-06-09 22:45:30 +00:00
|
|
|
# Register global Keystone args first so their defaults are respected.
|
|
|
|
# See https://bugs.launchpad.net/python-ironicclient/+bug/1463581
|
2016-02-03 16:20:06 +02:00
|
|
|
kasession.register_argparse_arguments(parser)
|
2015-06-09 22:45:30 +00:00
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
# Global arguments
|
|
|
|
parser.add_argument('-h', '--help',
|
|
|
|
action='store_true',
|
|
|
|
help=argparse.SUPPRESS,
|
|
|
|
)
|
|
|
|
|
|
|
|
parser.add_argument('--version',
|
|
|
|
action='version',
|
|
|
|
version=ironicclient.__version__)
|
|
|
|
|
2013-10-03 11:45:48 +01:00
|
|
|
parser.add_argument('--debug',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=bool(cliutils.env('IRONICCLIENT_DEBUG')),
|
2013-09-18 22:38:25 +01:00
|
|
|
action='store_true',
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[IRONICCLIENT_DEBUG]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2016-02-18 07:23:15 +00:00
|
|
|
parser.add_argument('--json',
|
|
|
|
default=False,
|
|
|
|
action='store_true',
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Print JSON response without formatting.'))
|
2016-02-18 07:23:15 +00:00
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
parser.add_argument('-v', '--verbose',
|
|
|
|
default=False, action="store_true",
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Print more verbose output'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2014-07-31 23:33:21 -07:00
|
|
|
# for backward compatibility only
|
2013-09-18 22:38:25 +01:00
|
|
|
parser.add_argument('--cert-file',
|
2014-07-31 23:33:21 -07:00
|
|
|
dest='os_cert',
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('DEPRECATED! Use --os-cert.'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2014-07-31 23:33:21 -07:00
|
|
|
# for backward compatibility only
|
2013-09-18 22:38:25 +01:00
|
|
|
parser.add_argument('--key-file',
|
2014-07-31 23:33:21 -07:00
|
|
|
dest='os_key',
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('DEPRECATED! Use --os-key.'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2014-07-31 23:33:21 -07:00
|
|
|
# for backward compatibility only
|
2013-09-18 22:38:25 +01:00
|
|
|
parser.add_argument('--ca-file',
|
2014-07-31 23:33:21 -07:00
|
|
|
dest='os_cacert',
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('DEPRECATED! Use --os-cacert.'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os-username',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_USERNAME'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_USERNAME]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_username',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--os-password',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_PASSWORD'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_PASSWORD]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_password',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--os-tenant-id',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_TENANT_ID'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_TENANT_ID]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_tenant_id',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--os-tenant-name',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_TENANT_NAME'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_TENANT_NAME]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_tenant_name',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--os-auth-url',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_AUTH_URL'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_AUTH_URL]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_auth_url',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--os-region-name',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_REGION_NAME'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_REGION_NAME]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_region_name',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--os-auth-token',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_AUTH_TOKEN'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_AUTH_TOKEN]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_auth_token',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--ironic-url',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('IRONIC_URL'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[IRONIC_URL]'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--ironic_url',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--ironic-api-version',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env(
|
Fix PEP8 E121,E122,E123,E124,E125,E129 errors
E121: continuation line under-indented for hanging indent
E122: continuation line missing indentation or outdented
E123: closing bracket does not match indentation of opening bracket's line
E124: closing bracket does not match visual indentation
E125: continuation line with same indent as next logical line
E129: visually indented line with same indent as next logical line
Remove E121,E122,E123,E124,E125, & E129 from the ignore list for flake8
Change-Id: I1b98335dd24086ab0271d25d662ad667ff8c5835
2015-02-20 12:42:12 -08:00
|
|
|
'IRONIC_API_VERSION', default='1'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Accepts 1.x (where "x" is microversion) '
|
|
|
|
'or "latest", Defaults to '
|
|
|
|
'env[IRONIC_API_VERSION] or 1'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--ironic_api_version',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
|
|
|
parser.add_argument('--os-service-type',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_SERVICE_TYPE'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_SERVICE_TYPE] or '
|
|
|
|
'"baremetal"'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_service_type',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
2015-02-04 11:29:32 +08:00
|
|
|
parser.add_argument('--os-endpoint',
|
2016-02-03 16:20:06 +02:00
|
|
|
dest='ironic_url',
|
2015-02-04 11:29:32 +08:00
|
|
|
default=cliutils.env('OS_SERVICE_ENDPOINT'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Specify an endpoint to use instead of '
|
|
|
|
'retrieving one from the service catalog '
|
|
|
|
'(via authentication). '
|
|
|
|
'Defaults to env[OS_SERVICE_ENDPOINT].'))
|
2015-02-04 11:29:32 +08:00
|
|
|
|
|
|
|
parser.add_argument('--os_endpoint',
|
2016-02-03 16:20:06 +02:00
|
|
|
dest='ironic_url',
|
2015-03-10 14:07:06 -07:00
|
|
|
help=argparse.SUPPRESS)
|
2015-02-04 11:29:32 +08:00
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
parser.add_argument('--os-endpoint-type',
|
2014-07-03 16:54:36 +03:00
|
|
|
default=cliutils.env('OS_ENDPOINT_TYPE'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_ENDPOINT_TYPE] or '
|
|
|
|
'"publicURL"'))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
parser.add_argument('--os_endpoint_type',
|
|
|
|
help=argparse.SUPPRESS)
|
|
|
|
|
2016-02-03 16:20:06 +02:00
|
|
|
parser.add_argument('--os-user-domain-id',
|
|
|
|
default=cliutils.env('OS_USER_DOMAIN_ID'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_USER_DOMAIN_ID].'))
|
2016-02-03 16:20:06 +02:00
|
|
|
|
|
|
|
parser.add_argument('--os-user-domain-name',
|
|
|
|
default=cliutils.env('OS_USER_DOMAIN_NAME'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_USER_DOMAIN_NAME].'))
|
2016-02-03 16:20:06 +02:00
|
|
|
|
|
|
|
parser.add_argument('--os-project-id',
|
|
|
|
default=cliutils.env('OS_PROJECT_ID'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Another way to specify tenant ID. '
|
|
|
|
'This option is mutually exclusive with '
|
|
|
|
' --os-tenant-id. '
|
|
|
|
'Defaults to env[OS_PROJECT_ID].'))
|
2016-02-03 16:20:06 +02:00
|
|
|
|
|
|
|
parser.add_argument('--os-project-name',
|
|
|
|
default=cliutils.env('OS_PROJECT_NAME'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Another way to specify tenant name. '
|
|
|
|
'This option is mutually exclusive with '
|
|
|
|
' --os-tenant-name. '
|
|
|
|
'Defaults to env[OS_PROJECT_NAME].'))
|
2016-02-03 16:20:06 +02:00
|
|
|
|
|
|
|
parser.add_argument('--os-project-domain-id',
|
|
|
|
default=cliutils.env('OS_PROJECT_DOMAIN_ID'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_PROJECT_DOMAIN_ID].'))
|
2016-02-03 16:20:06 +02:00
|
|
|
|
|
|
|
parser.add_argument('--os-project-domain-name',
|
|
|
|
default=cliutils.env('OS_PROJECT_DOMAIN_NAME'),
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Defaults to env[OS_PROJECT_DOMAIN_NAME].'))
|
|
|
|
|
|
|
|
msg = _('Maximum number of retries in case of conflict error '
|
|
|
|
'(HTTP 409). Defaults to env[IRONIC_MAX_RETRIES] or %d. '
|
|
|
|
'Use 0 to disable retrying.') % http.DEFAULT_MAX_RETRIES
|
|
|
|
parser.add_argument('--max-retries', type=int, help=msg,
|
2015-04-16 14:43:46 +02:00
|
|
|
default=cliutils.env(
|
|
|
|
'IRONIC_MAX_RETRIES',
|
|
|
|
default=str(http.DEFAULT_MAX_RETRIES)))
|
|
|
|
|
2016-08-01 12:04:38 +08:00
|
|
|
msg = _('Amount of time (in seconds) between retries '
|
|
|
|
'in case of conflict error (HTTP 409). '
|
|
|
|
'Defaults to env[IRONIC_RETRY_INTERVAL] '
|
|
|
|
'or %d.') % http.DEFAULT_RETRY_INTERVAL
|
|
|
|
parser.add_argument('--retry-interval', type=int, help=msg,
|
2015-04-16 14:43:46 +02:00
|
|
|
default=cliutils.env(
|
|
|
|
'IRONIC_RETRY_INTERVAL',
|
|
|
|
default=str(http.DEFAULT_RETRY_INTERVAL)))
|
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
return parser
|
|
|
|
|
2017-01-20 23:18:15 +08:00
|
|
|
def get_available_major_versions(self):
|
|
|
|
matcher = re.compile(r"^v[0-9]+$")
|
|
|
|
submodules = pkgutil.iter_modules([os.path.dirname(__file__)])
|
|
|
|
available_versions = [name[1:] for loader, name, ispkg in submodules
|
|
|
|
if matcher.search(name)]
|
|
|
|
|
|
|
|
return available_versions
|
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
def get_subcommand_parser(self, version):
|
|
|
|
parser = self.get_base_parser()
|
|
|
|
|
|
|
|
self.subcommands = {}
|
Consistent and more valid strings for Booleans
The set of valid input strings for Boolean values was inconsistent among
the subcommands of the Ironic CLI. egs:
-for node-set-console-mode: 'true', 'false'
-for node-set-maintenance: 'on', 'off', 'true', 'false', 'True', 'False'
This change allows the same set of valid values for all the subcommands:
'0', '1', 'f', 'false', 'n', 'no', 'off', 'on', 't', 'true', 'y', 'yes'.
For invalid strings, we output the subcommand usage along with the
argument, invalid string, and valid string choices.
At the API level, if NodeManager.set_maintenance() is passed an invalid
state (maintenance mode) value, an InvalidAttribute exception is raised.
Change-Id: I541695388489cdc640265df8ee6a9999e1442870
Closes-Bug: #1415943
2015-04-02 18:17:33 +00:00
|
|
|
subparsers = parser.add_subparsers(metavar='<subcommand>',
|
|
|
|
dest='subparser_name')
|
2017-01-20 23:18:15 +08:00
|
|
|
try:
|
|
|
|
submodule = importutils.import_versioned_module('ironicclient',
|
|
|
|
version, 'shell')
|
|
|
|
except ImportError as e:
|
|
|
|
msg = _("Invalid client version '%(version)s'. "
|
|
|
|
"Major part must be one of: '%(major)s'") % {
|
|
|
|
"version": version,
|
|
|
|
"major": ", ".join(self.get_available_major_versions())}
|
|
|
|
raise exceptions.UnsupportedVersion(
|
|
|
|
_('%(message)s, error was: %(error)s') %
|
|
|
|
{'message': msg, 'error': e})
|
2013-09-26 11:13:29 +01:00
|
|
|
submodule.enhance_parser(parser, subparsers, self.subcommands)
|
|
|
|
utils.define_commands_from_module(subparsers, self, self.subcommands)
|
2013-09-18 22:38:25 +01:00
|
|
|
return parser
|
|
|
|
|
|
|
|
def _setup_debugging(self, debug):
|
|
|
|
if debug:
|
|
|
|
logging.basicConfig(
|
|
|
|
format="%(levelname)s (%(module)s:%(lineno)d) %(message)s",
|
|
|
|
level=logging.DEBUG)
|
2013-10-02 16:16:31 +01:00
|
|
|
else:
|
|
|
|
logging.basicConfig(
|
2015-03-10 14:07:06 -07:00
|
|
|
format="%(levelname)s %(message)s",
|
|
|
|
level=logging.CRITICAL)
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2014-09-09 15:11:18 +00:00
|
|
|
def do_bash_completion(self):
|
2014-06-22 23:31:50 +05:30
|
|
|
"""Prints all of the commands and options for bash-completion."""
|
|
|
|
commands = set()
|
|
|
|
options = set()
|
|
|
|
for sc_str, sc in self.subcommands.items():
|
|
|
|
commands.add(sc_str)
|
|
|
|
for option in sc._optionals._option_string_actions.keys():
|
|
|
|
options.add(option)
|
2014-09-09 15:11:18 +00:00
|
|
|
|
|
|
|
commands.remove('bash-completion')
|
2014-06-22 23:31:50 +05:30
|
|
|
print(' '.join(commands | options))
|
|
|
|
|
2015-02-13 10:47:16 +08:00
|
|
|
def _check_version(self, api_version):
|
|
|
|
if api_version == 'latest':
|
|
|
|
return LATEST_API_VERSION
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
versions = tuple(int(i) for i in api_version.split('.'))
|
|
|
|
except ValueError:
|
|
|
|
versions = ()
|
|
|
|
if len(versions) == 1:
|
|
|
|
# Default value of ironic_api_version is '1'.
|
|
|
|
# If user not specify the value of api version, not passing
|
|
|
|
# headers at all.
|
|
|
|
os_ironic_api_version = None
|
|
|
|
elif len(versions) == 2:
|
|
|
|
os_ironic_api_version = api_version
|
|
|
|
# In the case of '1.0'
|
|
|
|
if versions[1] == 0:
|
|
|
|
os_ironic_api_version = None
|
|
|
|
else:
|
2015-03-07 13:50:28 -08:00
|
|
|
msg = _("The requested API version %(ver)s is an unexpected "
|
|
|
|
"format. Acceptable formats are 'X', 'X.Y', or the "
|
|
|
|
"literal string '%(latest)s'."
|
|
|
|
) % {'ver': api_version, 'latest': 'latest'}
|
|
|
|
raise exc.CommandError(msg)
|
|
|
|
|
2015-02-13 10:47:16 +08:00
|
|
|
api_major_version = versions[0]
|
|
|
|
return (api_major_version, os_ironic_api_version)
|
|
|
|
|
2013-09-18 22:38:25 +01:00
|
|
|
def main(self, argv):
|
|
|
|
# Parse args once to find version
|
|
|
|
parser = self.get_base_parser()
|
|
|
|
(options, args) = parser.parse_known_args(argv)
|
|
|
|
self._setup_debugging(options.debug)
|
|
|
|
|
|
|
|
# build available subcommands based on version
|
2015-02-13 10:47:16 +08:00
|
|
|
(api_major_version, os_ironic_api_version) = (
|
|
|
|
self._check_version(options.ironic_api_version))
|
|
|
|
|
|
|
|
subcommand_parser = self.get_subcommand_parser(api_major_version)
|
2013-09-18 22:38:25 +01:00
|
|
|
self.parser = subcommand_parser
|
|
|
|
|
|
|
|
# Handle top-level --help/-h before attempting to parse
|
|
|
|
# a command off the command line
|
|
|
|
if options.help or not argv:
|
|
|
|
self.do_help(options)
|
|
|
|
return 0
|
|
|
|
|
|
|
|
# Parse args again and call whatever callback was selected
|
|
|
|
args = subcommand_parser.parse_args(argv)
|
|
|
|
|
2014-09-09 15:11:18 +00:00
|
|
|
# Short-circuit and deal with these commands right away.
|
2013-09-18 22:38:25 +01:00
|
|
|
if args.func == self.do_help:
|
|
|
|
self.do_help(args)
|
|
|
|
return 0
|
2014-09-09 15:11:18 +00:00
|
|
|
elif args.func == self.do_bash_completion:
|
|
|
|
self.do_bash_completion()
|
|
|
|
return 0
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2016-03-04 02:14:00 +02:00
|
|
|
if not (args.os_auth_token and (args.ironic_url or args.os_auth_url)):
|
2013-09-18 22:38:25 +01:00
|
|
|
if not args.os_username:
|
2013-11-25 16:02:26 +00:00
|
|
|
raise exc.CommandError(_("You must provide a username via "
|
|
|
|
"either --os-username or via "
|
|
|
|
"env[OS_USERNAME]"))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2014-10-16 13:46:33 -04:00
|
|
|
if not args.os_password:
|
|
|
|
# No password, If we've got a tty, try prompting for it
|
|
|
|
if hasattr(sys.stdin, 'isatty') and sys.stdin.isatty():
|
|
|
|
# Check for Ctl-D
|
|
|
|
try:
|
|
|
|
args.os_password = getpass.getpass(
|
|
|
|
'OpenStack Password: ')
|
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
# No password because we didn't have a tty or the
|
|
|
|
# user Ctl-D when prompted.
|
2013-09-18 22:38:25 +01:00
|
|
|
if not args.os_password:
|
2013-11-25 16:02:26 +00:00
|
|
|
raise exc.CommandError(_("You must provide a password via "
|
2014-10-16 13:46:33 -04:00
|
|
|
"either --os-password, "
|
|
|
|
"env[OS_PASSWORD], "
|
|
|
|
"or prompted response"))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2014-07-31 23:33:21 -07:00
|
|
|
if not (args.os_tenant_id or args.os_tenant_name or
|
|
|
|
args.os_project_id or args.os_project_name):
|
2015-03-10 14:07:06 -07:00
|
|
|
raise exc.CommandError(
|
|
|
|
_("You must provide a project name or"
|
|
|
|
" project id via --os-project-name, --os-project-id,"
|
|
|
|
" env[OS_PROJECT_ID] or env[OS_PROJECT_NAME]. You may"
|
|
|
|
" use os-project and os-tenant interchangeably."))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
if not args.os_auth_url:
|
2013-11-25 16:02:26 +00:00
|
|
|
raise exc.CommandError(_("You must provide an auth url via "
|
|
|
|
"either --os-auth-url or via "
|
|
|
|
"env[OS_AUTH_URL]"))
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2015-04-16 14:43:46 +02:00
|
|
|
if args.max_retries < 0:
|
|
|
|
raise exc.CommandError(_("You must provide value >= 0 for "
|
|
|
|
"--max-retries"))
|
|
|
|
if args.retry_interval < 1:
|
|
|
|
raise exc.CommandError(_("You must provide value >= 1 for "
|
|
|
|
"--retry-interval"))
|
2016-02-03 16:20:06 +02:00
|
|
|
client_args = (
|
|
|
|
'os_auth_token', 'ironic_url', 'os_username', 'os_password',
|
|
|
|
'os_auth_url', 'os_project_id', 'os_project_name', 'os_tenant_id',
|
|
|
|
'os_tenant_name', 'os_region_name', 'os_user_domain_id',
|
|
|
|
'os_user_domain_name', 'os_project_domain_id',
|
|
|
|
'os_project_domain_name', 'os_service_type', 'os_endpoint_type',
|
|
|
|
'os_cacert', 'os_cert', 'os_key', 'max_retries', 'retry_interval',
|
|
|
|
'timeout', 'insecure'
|
|
|
|
)
|
|
|
|
kwargs = {}
|
|
|
|
for key in client_args:
|
|
|
|
kwargs[key] = getattr(args, key)
|
|
|
|
kwargs['os_ironic_api_version'] = os_ironic_api_version
|
2016-09-28 13:53:14 +03:00
|
|
|
client = ironicclient.client.get_client(api_major_version, **kwargs)
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
args.func(client, args)
|
|
|
|
except exc.Unauthorized:
|
2013-11-25 16:02:26 +00:00
|
|
|
raise exc.CommandError(_("Invalid OpenStack Identity credentials"))
|
Consistent and more valid strings for Booleans
The set of valid input strings for Boolean values was inconsistent among
the subcommands of the Ironic CLI. egs:
-for node-set-console-mode: 'true', 'false'
-for node-set-maintenance: 'on', 'off', 'true', 'false', 'True', 'False'
This change allows the same set of valid values for all the subcommands:
'0', '1', 'f', 'false', 'n', 'no', 'off', 'on', 't', 'true', 'y', 'yes'.
For invalid strings, we output the subcommand usage along with the
argument, invalid string, and valid string choices.
At the API level, if NodeManager.set_maintenance() is passed an invalid
state (maintenance mode) value, an InvalidAttribute exception is raised.
Change-Id: I541695388489cdc640265df8ee6a9999e1442870
Closes-Bug: #1415943
2015-04-02 18:17:33 +00:00
|
|
|
except exc.CommandError as e:
|
|
|
|
subcommand_parser = self.subcommands[args.subparser_name]
|
|
|
|
subcommand_parser.error(e)
|
2013-09-18 22:38:25 +01:00
|
|
|
|
2014-07-03 16:54:36 +03:00
|
|
|
@cliutils.arg('command', metavar='<subcommand>', nargs='?',
|
2016-08-01 12:04:38 +08:00
|
|
|
help=_('Display help for <subcommand>'))
|
2013-09-18 22:38:25 +01:00
|
|
|
def do_help(self, args):
|
|
|
|
"""Display help about this program or one of its subcommands."""
|
|
|
|
if getattr(args, 'command', None):
|
|
|
|
if args.command in self.subcommands:
|
|
|
|
self.subcommands[args.command].print_help()
|
|
|
|
else:
|
2013-11-25 16:02:26 +00:00
|
|
|
raise exc.CommandError(_("'%s' is not a valid subcommand") %
|
2013-09-18 22:38:25 +01:00
|
|
|
args.command)
|
|
|
|
else:
|
|
|
|
self.parser.print_help()
|
|
|
|
|
|
|
|
|
|
|
|
class HelpFormatter(argparse.HelpFormatter):
|
|
|
|
def start_section(self, heading):
|
2016-12-20 16:07:19 +02:00
|
|
|
super(HelpFormatter, self).start_section(heading.capitalize())
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
try:
|
|
|
|
IronicShell().main(sys.argv[1:])
|
2014-09-11 17:17:39 +05:30
|
|
|
except KeyboardInterrupt:
|
2016-08-01 12:04:38 +08:00
|
|
|
print(_("... terminating ironic client"), file=sys.stderr)
|
2016-07-30 22:12:55 +08:00
|
|
|
return 130
|
2013-09-18 22:38:25 +01:00
|
|
|
except Exception as e:
|
2015-02-05 15:11:22 +08:00
|
|
|
print(encodeutils.safe_encode(six.text_type(e)), file=sys.stderr)
|
2016-07-30 22:12:55 +08:00
|
|
|
return 1
|
2013-09-18 22:38:25 +01:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2016-07-30 22:12:55 +08:00
|
|
|
sys.exit(main())
|