summaryrefslogtreecommitdiff
path: root/ironic
diff options
context:
space:
mode:
Diffstat (limited to 'ironic')
-rw-r--r--ironic/api/app.py6
-rw-r--r--ironic/common/image_service.py3
-rw-r--r--ironic/dhcp/neutron.py2
-rw-r--r--ironic/drivers/modules/amt/common.py3
-rw-r--r--ironic/drivers/modules/irmc/boot.py2
-rw-r--r--ironic/drivers/modules/irmc/common.py12
-rw-r--r--ironic/drivers/modules/pxe.py2
7 files changed, 13 insertions, 17 deletions
diff --git a/ironic/api/app.py b/ironic/api/app.py
index 779f839cb..b390334e1 100644
--- a/ironic/api/app.py
+++ b/ironic/api/app.py
@@ -31,9 +31,9 @@ api_opts = [
'auth_strategy',
default='keystone',
choices=['noauth', 'keystone'],
- help=_('Authentication strategy used by ironic-api: one of "keystone" '
- 'or "noauth". "noauth" should not be used in a production '
- 'environment because all authentication will be disabled.')),
+ help=_('Authentication strategy used by ironic-api. "noauth" should '
+ 'not be used in a production environment because all '
+ 'authentication will be disabled.')),
cfg.BoolOpt('debug_tracebacks_in_api',
default=False,
help=_('Return server tracebacks in the API response for any '
diff --git a/ironic/common/image_service.py b/ironic/common/image_service.py
index 8a26735fa..51fa74ffd 100644
--- a/ironic/common/image_service.py
+++ b/ironic/common/image_service.py
@@ -70,8 +70,7 @@ glance_opts = [
default='keystone',
choices=['keystone', 'noauth'],
help=_('Authentication strategy to use when connecting to '
- 'glance. Only "keystone" and "noauth" are currently '
- 'supported by ironic.')),
+ 'glance.')),
]
CONF.register_opts(glance_opts, group='glance')
diff --git a/ironic/dhcp/neutron.py b/ironic/dhcp/neutron.py
index 1ca4226de..63fac876e 100644
--- a/ironic/dhcp/neutron.py
+++ b/ironic/dhcp/neutron.py
@@ -47,7 +47,7 @@ neutron_opts = [
default='keystone',
choices=['keystone', 'noauth'],
help=_('Default authentication strategy to use when connecting '
- 'to neutron. Can be either "keystone" or "noauth". '
+ 'to neutron. '
'Running neutron in noauth mode (related to but not '
'affected by this setting) is insecure and should only '
'be used for testing.')),
diff --git a/ironic/drivers/modules/amt/common.py b/ironic/drivers/modules/amt/common.py
index 003453d39..d950d8d8c 100644
--- a/ironic/drivers/modules/amt/common.py
+++ b/ironic/drivers/modules/amt/common.py
@@ -51,8 +51,7 @@ opts = [
cfg.StrOpt('protocol',
default='http',
choices=['http', 'https'],
- help=_('Protocol used for AMT endpoint, '
- 'support http/https')),
+ help=_('Protocol used for AMT endpoint')),
cfg.IntOpt('awake_interval',
default=60,
min=0,
diff --git a/ironic/drivers/modules/irmc/boot.py b/ironic/drivers/modules/irmc/boot.py
index 04f0de48c..e09e60db1 100644
--- a/ironic/drivers/modules/irmc/boot.py
+++ b/ironic/drivers/modules/irmc/boot.py
@@ -59,7 +59,7 @@ opts = [
default='CIFS',
choices=['CIFS', 'NFS'],
ignore_case=True,
- help=_('Share type of virtual media, either "NFS" or "CIFS"')),
+ help=_('Share type of virtual media')),
cfg.StrOpt('remote_image_share_name',
default='share',
help=_('share name of remote_image_server')),
diff --git a/ironic/drivers/modules/irmc/common.py b/ironic/drivers/modules/irmc/common.py
index 646045b81..252a6a24a 100644
--- a/ironic/drivers/modules/irmc/common.py
+++ b/ironic/drivers/modules/irmc/common.py
@@ -29,25 +29,23 @@ opts = [
cfg.PortOpt('port',
default=443,
choices=[443, 80],
- help=_('Port to be used for iRMC operations, either 80 or '
- '443')),
+ help=_('Port to be used for iRMC operations')),
cfg.StrOpt('auth_method',
default='basic',
choices=['basic', 'digest'],
- help=_('Authentication method to be used for iRMC operations, '
- 'either "basic" or "digest"')),
+ help=_('Authentication method to be used for iRMC '
+ 'operations')),
cfg.IntOpt('client_timeout',
default=60,
help=_('Timeout (in seconds) for iRMC operations')),
cfg.StrOpt('sensor_method',
default='ipmitool',
choices=['ipmitool', 'scci'],
- help=_('Sensor data retrieval method, either '
- '"ipmitool" or "scci"')),
+ help=_('Sensor data retrieval method.')),
cfg.StrOpt('snmp_version',
default='v2c',
choices=['v1', 'v2c', 'v3'],
- help=_('SNMP protocol version, either "v1", "v2c" or "v3"')),
+ help=_('SNMP protocol version')),
cfg.PortOpt('snmp_port',
default=161,
help=_('SNMP port')),
diff --git a/ironic/drivers/modules/pxe.py b/ironic/drivers/modules/pxe.py
index 2bbec67ae..d2451b74b 100644
--- a/ironic/drivers/modules/pxe.py
+++ b/ironic/drivers/modules/pxe.py
@@ -89,7 +89,7 @@ pxe_opts = [
default='4',
choices=['4', '6'],
help=_('The IP version that will be used for PXE booting. '
- 'Can be either 4 or 6. Defaults to 4. EXPERIMENTAL')),
+ 'Defaults to 4. EXPERIMENTAL')),
]
LOG = logging.getLogger(__name__)