393476fda3
This change adds the ability to pre-assign IP addresses that will be used on the ctlplane network for each node. The functionality is similar to the existing ips-from-pool templates, but the IP will be passed to the Nova server resource rather than a dedicated Neutron port (as happens with the isolated networks templates). This allows for compatibility with legacy installations for upgrades. In testing, it also appears that the fixed IP can be changed in a stack update, but more testing will have to be done. Note that if an IP address is defined for some nodes but not others, nodes without a fixed IP will get an IP assigned automatically by Neutron. Change-Id: I67513f54a60f5a50a2bc435099fbb2a643adc277
27 lines
921 B
YAML
27 lines
921 B
YAML
# Environment file demonstrating how to pre-assign provisioning IPs on the
|
|
# boot NIC to all node types. In order to use this file, set
|
|
# ctlplane_fixed_ip to True in the role definition, otherwise these
|
|
# settings will be ignored.
|
|
|
|
parameter_defaults:
|
|
ControllerIPs:
|
|
# Each controller will get an IP from the lists below, first controller, first IP
|
|
ctlplane:
|
|
- 192.168.24.251
|
|
ComputeIPs:
|
|
# Each compute will get an IP from the lists below, first compute, first IP
|
|
ctlplane:
|
|
- 192.168.24.252
|
|
CephStorageIPs:
|
|
# Each ceph node will get an IP from the lists below, first node, first IP
|
|
ctlplane:
|
|
- 192.168.24.253
|
|
SwiftStorageIPs:
|
|
# Each swift node will get an IP from the lists below, first node, first IP
|
|
ctlplane:
|
|
- 192.168.24.254
|
|
BlockStorageIPs:
|
|
# Each cinder node will get an IP from the lists below, first node, first IP
|
|
ctlplane:
|
|
- 192.168.24.250
|