# # 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 from ironic.common.i18n import _ opts = [ cfg.IntOpt('query_raid_config_job_status_interval', default=120, min=1, help=_('Interval (in seconds) between periodic RAID job status ' 'checks to determine whether the asynchronous RAID ' 'configuration was successfully finished or not.')), cfg.IntOpt('boot_device_job_status_timeout', default=30, min=1, help=_('Maximum amount of time (in seconds) to wait for ' 'the boot device configuration job to transition ' 'to the correct state to allow a reboot or power ' 'on to complete.')), cfg.IntOpt('config_job_max_retries', default=240, min=1, help=_('Maximum number of retries for ' 'the configuration job to complete ' 'successfully.')), cfg.IntOpt('query_import_config_job_status_interval', min=0, default=60, help=_('Number of seconds to wait between checking for ' 'completed import configuration task')), cfg.IntOpt('bios_factory_reset_timeout', default=600, min=1, help=_('Maximum time (in seconds) to wait for factory reset of ' 'BIOS settings to complete.')), cfg.IntOpt('raid_job_timeout', default=300, min=1, help=_('Maximum time (in seconds) to wait for RAID job to ' 'complete')) ] def register_opts(conf): conf.register_opts(opts, group='drac')