Merge "Group config params more logically"
This commit is contained in:
@@ -91,12 +91,24 @@ _opts = [
|
||||
'local_interface, with the netmask defined by the '
|
||||
'prefix portion of the value.')
|
||||
),
|
||||
cfg.StrOpt('network_gateway',
|
||||
default='192.0.2.1',
|
||||
help=('Network gateway for the Neutron-managed network for '
|
||||
'Overcloud instances. This should match the local_ip '
|
||||
'above when using masquerading.')
|
||||
),
|
||||
cfg.StrOpt('local_interface',
|
||||
default='eth1',
|
||||
help=('Network interface on the Undercloud that will be '
|
||||
'handling the PXE boots and DHCP for Overcloud '
|
||||
'instances.')
|
||||
),
|
||||
cfg.StrOpt('network_cidr',
|
||||
default='192.0.2.0/24',
|
||||
help=('Network CIDR for the Neutron-managed network for '
|
||||
'Overcloud instances. This should be the subnet used '
|
||||
'for PXE booting.')
|
||||
),
|
||||
cfg.StrOpt('masquerade_network',
|
||||
default='192.0.2.0/24',
|
||||
help=('Network that will be masqueraded for external access, '
|
||||
@@ -113,18 +125,6 @@ _opts = [
|
||||
help=('End of DHCP allocation range for PXE and DHCP of '
|
||||
'Overcloud instances.')
|
||||
),
|
||||
cfg.StrOpt('network_cidr',
|
||||
default='192.0.2.0/24',
|
||||
help=('Network CIDR for the Neutron-managed network for '
|
||||
'Overcloud instances. This should be the subnet used '
|
||||
'for PXE booting.')
|
||||
),
|
||||
cfg.StrOpt('network_gateway',
|
||||
default='192.0.2.1',
|
||||
help=('Network gateway for the Neutron-managed network for '
|
||||
'Overcloud instances. This should match the local_ip '
|
||||
'above when using masquerading.')
|
||||
),
|
||||
cfg.StrOpt('inspection_interface',
|
||||
default='br-ctlplane',
|
||||
deprecated_name='discovery_interface',
|
||||
|
||||
@@ -16,10 +16,20 @@
|
||||
# portion of the value. (string value)
|
||||
#local_ip = 192.0.2.1/24
|
||||
|
||||
# Network gateway for the Neutron-managed network for Overcloud
|
||||
# instances. This should match the local_ip above when using
|
||||
# masquerading. (string value)
|
||||
#network_gateway = 192.0.2.1
|
||||
|
||||
# Network interface on the Undercloud that will be handling the PXE
|
||||
# boots and DHCP for Overcloud instances. (string value)
|
||||
#local_interface = eth1
|
||||
|
||||
# Network CIDR for the Neutron-managed network for Overcloud
|
||||
# instances. This should be the subnet used for PXE booting. (string
|
||||
# value)
|
||||
#network_cidr = 192.0.2.0/24
|
||||
|
||||
# Network that will be masqueraded for external access, if required.
|
||||
# This should be the subnet used for PXE booting. (string value)
|
||||
#masquerade_network = 192.0.2.0/24
|
||||
@@ -32,16 +42,6 @@
|
||||
# instances. (string value)
|
||||
#dhcp_end = 192.0.2.24
|
||||
|
||||
# Network CIDR for the Neutron-managed network for Overcloud
|
||||
# instances. This should be the subnet used for PXE booting. (string
|
||||
# value)
|
||||
#network_cidr = 192.0.2.0/24
|
||||
|
||||
# Network gateway for the Neutron-managed network for Overcloud
|
||||
# instances. This should match the local_ip above when using
|
||||
# masquerading. (string value)
|
||||
#network_gateway = 192.0.2.1
|
||||
|
||||
# Network interface on which inspection dnsmasq will listen. If in
|
||||
# doubt, use the default value. (string value)
|
||||
# Deprecated group/name - [DEFAULT]/discovery_interface
|
||||
|
||||
Reference in New Issue
Block a user