c254d12ccc
* Add an optional pool_id argument to the show_config pool helper command * Remove a hardcoded reference to the default pool ID Change-Id: Ica99c8761157202ec0e9f37706d75584e7bc1b03 Closes-Bug: 1459433
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
# Copyright 2015 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Author: Kiall Mac Innes <kiall@hp.com>
|
|
#
|
|
# 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.
|
|
import pprint
|
|
|
|
from oslo_config import cfg
|
|
from oslo_log import log as logging
|
|
|
|
from designate.manage import base
|
|
from designate import objects
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
CONF = cfg.CONF
|
|
|
|
|
|
class PoolCommands(base.Commands):
|
|
|
|
@base.args('--pool_id', help='ID of the pool to be examined',
|
|
default=CONF['service:central'].default_pool_id)
|
|
def show_config(self, pool_id):
|
|
print('*' * 100)
|
|
print('Pool Configuration:')
|
|
print('*' * 100)
|
|
pprint.pprint(objects.Pool.from_config(CONF, pool_id).to_dict())
|