119cb5b8f0
This changes the help messages of ironic cli which shows ID whereever UUID is expected. Change-Id: Icacd3ab0d146d75b67dccd607c480aef50c9f162 Closes-Bug: #1250260
118 lines
4.0 KiB
Python
118 lines
4.0 KiB
Python
#!/usr/bin/env python
|
|
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2013 Red Hat, 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.
|
|
|
|
from ironicclient.common import utils
|
|
from ironicclient import exc
|
|
|
|
|
|
def _print_chassis_show(chassis):
|
|
fields = ['uuid', 'description', 'extra']
|
|
data = dict([(f, getattr(chassis, f, '')) for f in fields])
|
|
utils.print_dict(data, wrap=72)
|
|
|
|
|
|
@utils.arg('chassis', metavar='<chassis id>', help="UUID of chassis")
|
|
def do_chassis_show(cc, args):
|
|
"""Show a chassis."""
|
|
try:
|
|
chassis = cc.chassis.get(args.chassis)
|
|
except exc.HTTPNotFound:
|
|
raise exc.CommandError('Chassis not found: %s' % args.chassis)
|
|
else:
|
|
_print_chassis_show(chassis)
|
|
|
|
|
|
def do_chassis_list(cc, args):
|
|
"""List chassis."""
|
|
chassis = cc.chassis.list()
|
|
field_labels = ['UUID', 'Description']
|
|
fields = ['uuid', 'description']
|
|
utils.print_list(chassis, fields, field_labels, sortby=1)
|
|
|
|
|
|
@utils.arg('-d', '--description',
|
|
metavar='<description>',
|
|
help='Free text description of the chassis')
|
|
@utils.arg('-e', '--extra',
|
|
metavar="<key=value>",
|
|
action='append',
|
|
help="Record arbitrary key/value metadata. "
|
|
"Can be specified multiple times")
|
|
def do_chassis_create(cc, args):
|
|
"""Create a new chassis."""
|
|
field_list = ['description', 'extra']
|
|
fields = dict((k, v) for (k, v) in vars(args).items()
|
|
if k in field_list and not (v is None))
|
|
fields = utils.args_array_to_dict(fields, 'extra')
|
|
chassis = cc.chassis.create(**fields)
|
|
|
|
field_list.append('uuid')
|
|
data = dict([(f, getattr(chassis, f, '')) for f in field_list])
|
|
utils.print_dict(data, wrap=72)
|
|
|
|
|
|
@utils.arg('chassis',
|
|
metavar='<chassis id>',
|
|
nargs='+',
|
|
help="UUID of chassis")
|
|
def do_chassis_delete(cc, args):
|
|
"""Delete a chassis."""
|
|
for c in args.chassis:
|
|
try:
|
|
cc.chassis.delete(c)
|
|
except exc.HTTPNotFound:
|
|
raise exc.CommandError('Chassis not found: %s' % c)
|
|
print('Deleted chassis %s' % c)
|
|
|
|
|
|
@utils.arg('chassis',
|
|
metavar='<chassis id>',
|
|
help="UUID of chassis")
|
|
@utils.arg('op',
|
|
metavar='<op>',
|
|
choices=['add', 'replace', 'remove'],
|
|
help="Operations: 'add', 'replace' or 'remove'")
|
|
@utils.arg('attributes',
|
|
metavar='<path=value>',
|
|
nargs='+',
|
|
action='append',
|
|
default=[],
|
|
help="Attributes to add/replace or remove "
|
|
"(only PATH is necessary on remove)")
|
|
def do_chassis_update(cc, args):
|
|
"""Update a chassis."""
|
|
patch = utils.args_array_to_patch(args.op, args.attributes[0])
|
|
try:
|
|
chassis = cc.chassis.update(args.chassis, patch)
|
|
except exc.HTTPNotFound:
|
|
raise exc.CommandError('Chassis not found: %s' % args.chassis)
|
|
_print_chassis_show(chassis)
|
|
|
|
|
|
@utils.arg('chassis', metavar='<chassis id>', help="UUID of chassis")
|
|
def do_chassis_node_list(cc, args):
|
|
"""List the nodes contained in the chassis."""
|
|
try:
|
|
nodes = cc.chassis.list_nodes(args.chassis)
|
|
except exc.HTTPNotFound:
|
|
raise exc.CommandError(_('Chassis not found: %s') % args.chassis)
|
|
field_labels = ['UUID', 'Instance UUID',
|
|
'Power State', 'Provisioning State']
|
|
fields = ['uuid', 'instance_uuid', 'power_state', 'provision_state']
|
|
utils.print_list(nodes, fields, field_labels, sortby=1)
|