Files
nova/nova/conf/ironic.py
Markus Zoeller a924b1db46 config: remove deprecated ironic.client_log_level
The config option "client_log_level" of the "ironic" section was
deprecated with commit d6baa2ae4d since
the Kilo release and this change removes this option.

Closes-Bug: 1365230
Change-Id: I605d4ca5b3924ecf013cbf7e228e713b864d7aa4
2016-05-09 10:24:40 +00:00

94 lines
2.5 KiB
Python

# Copyright 2015 Intel Corporation
# 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 oslo_config import cfg
ironic_group = cfg.OptGroup(
'ironic',
title='Ironic Options')
api_version = cfg.IntOpt(
'api_version',
default=1,
deprecated_for_removal=True,
help='Version of Ironic API service endpoint. '
'DEPRECATED: Setting the API version is not possible anymore.')
api_endpoint = cfg.StrOpt(
'api_endpoint',
help='URL for Ironic API endpoint.')
admin_username = cfg.StrOpt(
'admin_username',
help='Ironic keystone admin name')
admin_password = cfg.StrOpt(
'admin_password',
secret=True,
help='Ironic keystone admin password.')
admin_auth_token = cfg.StrOpt(
'admin_auth_token',
secret=True,
deprecated_for_removal=True,
help='Ironic keystone auth token.'
'DEPRECATED: use admin_username, admin_password, and '
'admin_tenant_name instead')
admin_url = cfg.StrOpt(
'admin_url',
help='Keystone public API endpoint.')
cafile = cfg.StrOpt(
'cafile',
help='PEM encoded Certificate Authority to use when verifying HTTPs '
'connections.')
admin_tenant_name = cfg.StrOpt(
'admin_tenant_name',
help='Ironic keystone tenant name.')
api_max_retries = cfg.IntOpt(
'api_max_retries',
default=60,
help=('How many retries when a request does conflict. '
'If <= 0, only try once, no retries.'))
api_retry_interval = cfg.IntOpt(
'api_retry_interval',
default=2,
help='How often to retry in seconds when a request '
'does conflict')
ALL_OPTS = [api_version,
api_endpoint,
admin_username,
admin_password,
admin_auth_token,
admin_url,
cafile,
admin_tenant_name,
api_max_retries,
api_retry_interval]
def register_opts(conf):
conf.register_group(ironic_group)
conf.register_opts(ALL_OPTS, group=ironic_group)
def list_opts():
return {ironic_group: ALL_OPTS}