8f9eeb801a
Centralize config option of Cluster Heat section. Replace oslo_conf cfg to magnum.conf. Change-Id: I9118eeb17061a0aa26269ea9deaba28e79f28b76 Implements: blueprint centralize-config-magnum
53 lines
2.1 KiB
Python
53 lines
2.1 KiB
Python
# 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
|
|
|
|
cluster_heat_group = cfg.OptGroup(name='cluster_heat',
|
|
title='Heat options for Cluster '
|
|
'configuration')
|
|
|
|
cluster_heat_opts = [
|
|
cfg.IntOpt('max_attempts',
|
|
default=2000,
|
|
help=('Number of attempts to query the Heat stack for '
|
|
'finding out the status of the created stack and '
|
|
'getting template outputs. This value is ignored '
|
|
'during cluster creation if timeout is set as the poll '
|
|
'will continue until cluster creation either ends '
|
|
'or times out.'),
|
|
deprecated_group='bay_heat'),
|
|
cfg.IntOpt('wait_interval',
|
|
default=1,
|
|
help=('Sleep time interval between two attempts of querying '
|
|
'the Heat stack. This interval is in seconds.'),
|
|
deprecated_group='bay_heat'),
|
|
cfg.IntOpt('create_timeout',
|
|
default=60,
|
|
help=('The length of time to let cluster creation continue. '
|
|
'This interval is in minutes. The default is 60 minutes.'
|
|
),
|
|
deprecated_group='bay_heat',
|
|
deprecated_name='bay_create_timeout')
|
|
]
|
|
|
|
|
|
def register_opts(conf):
|
|
conf.register_group(cluster_heat_group)
|
|
conf.register_opts(cluster_heat_opts, group=cluster_heat_group)
|
|
|
|
|
|
def list_opts():
|
|
return {
|
|
cluster_heat_group: cluster_heat_opts
|
|
}
|