diff options
author | Dan Radez <dradez@redhat.com> | 2015-12-15 15:44:01 -0500 |
---|---|---|
committer | Dan Radez <dradez@redhat.com> | 2015-12-18 13:29:07 -0500 |
commit | f79e4a1703ba54008e7049b041600546e0482f75 (patch) | |
tree | f51fc992680709817d18589bc5b51ae5a9bb002b /config/deploy | |
parent | 3011039e5e6308a88c28aa912de22f05355e5678 (diff) |
Adding network configuration options
- enabling subnet configuration for undercloud
- enabling external network configuration
Change-Id: Id1951d31faa1a68f850a75e2466d30b8abcea8ac
Diffstat (limited to 'config/deploy')
-rw-r--r-- | config/deploy/deploy_settings.yaml | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/config/deploy/deploy_settings.yaml b/config/deploy/deploy_settings.yaml index f024116c..52d39130 100644 --- a/config/deploy/deploy_settings.yaml +++ b/config/deploy/deploy_settings.yaml @@ -3,9 +3,26 @@ global_params: network_isolation_settings: network/network-environment-example.yaml deploy_options: + # instack_ip + # IP address given to instack on the provisioning network + instack_ip: 192.0.2.1 + # CIDR of provisioning network + provisioning_cidr: 192.0.2.0/24 + # gateway IP of provisioning network + provisioning_gateway: 192.0.2.1 + # IP pool start used for provisioning overcloud nodes + provisioning_dhcp_start: 192.0.2.5 + # IP pool end used for inspecting overcloud nodes + provisioning_dhcp_end: 192.0.2.24 + # IP pool used for inspecting overcloud nodes on the provisioning network + provisioning_inspection_iprange: 192.0.2.100,192.0.2.124 sdn_controller: opendaylight tacker: false congress: false - - - + # CIDR used to for the external network + ext_net_cidr: 192.168.37.0/24 + # Allocation pools for floating ip addresses on the ext net + ext_allocation_pool_start: 192.168.37.50 + ext_allocation_pool_end: 192.168.37.99 + # Default Gateway for External Network + ext_gateway: 192.168.37.1 |