Source code for ironic.conf.console
# Copyright 2016 Intel Corporation
# Copyright 2014 International Business Machines 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
from oslo_config import types
from ironic.common.i18n import _
[docs]
class PortRange(types.String):
def __init__(self):
super().__init__(type_name='port_range')
[docs]
def __call__(self, value):
if len(value.split(':')) != 2:
raise ValueError("Value should be in <start>:<end> format")
try:
start, end = map(int, value.split(':'))
except ValueError:
raise ValueError("Port numbers should be integers")
if start > end:
raise ValueError("Start should not be greater than end.")
if start < types.Port.PORT_MIN:
raise ValueError("Port range should be in [0, 65535]")
if end > types.Port.PORT_MAX:
raise ValueError("Port range should be in [0, 65535]")
return range(start, end)
opts = [
cfg.StrOpt('terminal_pid_dir',
help=_('Directory for holding terminal pid files. '
'If not specified, the temporary directory '
'will be used.')),
cfg.IntOpt('terminal_timeout',
default=600,
min=0,
help=_('Timeout (in seconds) for the terminal session to be '
'closed on inactivity. Set to 0 to disable timeout. '
'Used only by Socat console.')),
cfg.IntOpt('subprocess_checking_interval',
default=1,
help=_('Time interval (in seconds) for checking the status of '
'console subprocess.')),
cfg.IntOpt('subprocess_timeout',
default=10,
help=_('Time (in seconds) to wait for the console subprocess '
'to start.')),
cfg.IntOpt('kill_timeout',
default=1,
help=_('Time (in seconds) to wait for the console subprocess '
'to exit before sending SIGKILL signal.')),
cfg.IPOpt('socat_address',
default='$my_ip',
help=_('IP address of Socat service running on the host of '
'ironic conductor. Used only by Socat console.')),
cfg.ListOpt('port_range',
item_type=PortRange(),
sample_default=['10000:20000'],
help=_('A range of ports available to be used for the console '
'proxy service running on the host of ironic '
'conductor, in the form of <start>:<stop> or '
'comma-separated ranges like '
'<start>:<stop>,<start>:<stop>. This option is used '
'only by Socat console')),
]
[docs]
def register_opts(conf):
conf.register_opts(opts, group='console')