diff options
author | Clint Byrum <clint@fewbar.com> | 2013-07-12 14:52:14 -0700 |
---|---|---|
committer | Clint Byrum <clint@fewbar.com> | 2013-07-12 17:14:55 -0700 |
commit | dc23c472a2215c13676567c444db495f64be96f5 (patch) | |
tree | cd398e0f3325b1e4a2d06d53b7122e9ac4a40c85 | |
parent | 3af15362879ed990850d40af482d3ea56f8c0a3d (diff) |
overcloud-source: Fix overcloud parameters.
These values were missed in the initial overcloud-source.yaml.
nova.metadata-proxy is required to allow vms to communicate with the
EC2-style metadata service.
quantum.ovs.fixed_range constraints DHCP allocation for the undercloud,
but in the overcloud we do not want this constraint because the individual
subnets we define will do that. quantum.ovs.ovs_range configures the
range of ips that can be assigned to the tenant subnets.
Change-Id: If7191fa8baf1209ae33b9e8200f52ea0ade97810
-rw-r--r-- | overcloud-source.yaml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/overcloud-source.yaml b/overcloud-source.yaml index 7e5fcd23..a6285f7a 100644 --- a/overcloud-source.yaml +++ b/overcloud-source.yaml @@ -109,6 +109,7 @@ Resources: compute_driver: libvirt.LibvirtDriver db: mysql://nova:unset@localhost/nova host: 0.0.0.0 + metadata-proxy: true neutron: floatingip_end: 192.0.2.64 floatingip_range: 192.0.2.0/24 @@ -117,9 +118,7 @@ Resources: metadata_proxy_shared_secret: unset ovs: enable_tunneling: 'True' - fixed_range: - end: 10.255.255.254 - start: 10.0.0.2 + ovs_range: 10.0.0.0/8 local_ip: 0.0.0.0 public_interface: eth2 tenant_network_type: gre |