config/sysinv/cgts-client/cgts-client/cgtsclient/v1/ceph_mon_shell.py
Al Bailey d7330d0f44 Convert cgtsclient from setuptools to pbr. Add tox.
Primary reason for this change was to update the spec and setup files
from basic setuptools to use pbr
This allows the autogenerated  /usr/bin/system file to directly call the
main method without using pkg-resources.
This will provide a performance improvement of .5 seconds per CLI call,
once the other pkg_resources issues are resolved

Second reason for this change was to wire in the tox unit tests.  This
also includes pep8, pylint and coverage.
Currently pep8 does not perform the 80 char limit check
Currently pylint still reports some issues

This should not affect the RPM names being generated or otherwise affect
patching or upgrades.

Change-Id: I9f14c9216fdcc63930a4b2849102b58442706144
2018-06-28 22:07:37 -04:00

91 lines
2.9 KiB
Python

#!/usr/bin/env python
#
# Copyright (c) 2013-2016 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
# vim: tabstop=4 shiftwidth=4 softtabstop=4
# All Rights Reserved.
#
from cgtsclient.common import constants
from cgtsclient.common import utils
from cgtsclient.v1 import ihost as ihost_utils
def _print_ceph_mon_show(ceph_mon):
fields = ['uuid', 'ceph_mon_gib',
'created_at', 'updated_at']
data = [(f, getattr(ceph_mon, f)) for f in fields]
utils.print_tuple_list(data)
def _print_ceph_mon_list(cc):
field_labels = ['uuid', 'ceph_mon_gib',
'hostname']
fields = ['uuid', 'ceph_mon_gib', 'hostname']
ceph_mons = cc.ceph_mon.list()
utils.print_list(ceph_mons, fields, field_labels, sortby=0)
@utils.arg('controller',
metavar='<controller>',
choices=[constants.CONTROLLER_0_HOSTNAME,
constants.CONTROLLER_1_HOSTNAME],
help='Specify controller host name <%s | %s> ' % (
constants.CONTROLLER_0_HOSTNAME,
constants.CONTROLLER_1_HOSTNAME))
@utils.arg('attributes',
metavar='<path=value>',
nargs='+',
action='append',
default=[],
help="Ceph mon parameters to apply, "
"Supported parameters: ceph_mon_gib.")
def do_ceph_mon_modify(cc, args):
controller = vars(args).get('controller', None)
patch = utils.args_array_to_patch("replace", args.attributes[0])
patch.append({
'op': 'replace', 'path': '/controller', 'value': controller
})
# Obtain the host whose ceph monitor we want to modify.
ihost = ihost_utils._find_ihost(cc, controller)
ceph_mon = cc.ceph_mon.list(ihost.uuid)[0]
changes = dict(v.split("=", 1) for v in args.attributes[0])
if changes.get('ceph_mon_gib', None) and \
changes['ceph_mon_gib'] != getattr(ceph_mon, 'ceph_mon_gib'):
for ceph_mon in cc.ceph_mon.list():
cc.ceph_mon.update(ceph_mon.uuid, patch)
_print_ceph_mon_list(cc)
print "\nNOTE: ceph_mon_gib for both controllers are changed."
else:
ceph_mon = cc.ceph_mon.update(ceph_mon.uuid, patch)
_print_ceph_mon_show(ceph_mon)
print "\nSystem configuration has changed.\nplease follow the " \
"administrator guide to complete configuring system.\n"
def do_ceph_mon_list(cc, args):
"""List ceph mons"""
_print_ceph_mon_list(cc)
@utils.arg('hostnameorid',
metavar='<hostname or id>',
help="name or ID of host [REQUIRED]")
def do_ceph_mon_show(cc, args):
"""Show ceph_mon of a specific host."""
ihost = ihost_utils._find_ihost(cc, args.hostnameorid)
ceph_mons = cc.ceph_mon.list()
for ceph_mon in ceph_mons:
hostname = getattr(ceph_mon, 'hostname', '')
if hostname == ihost.hostname:
_print_ceph_mon_show(ceph_mon)