aboutsummaryrefslogtreecommitdiffstats
path: root/overcloud-source.yaml
diff options
context:
space:
mode:
authorClint Byrum <clint@fewbar.com>2013-09-16 17:29:24 -0700
committerClint Byrum <clint@fewbar.com>2013-09-17 11:05:59 -0700
commit287e97de9cc3dce498403c9cae69ae48108def9c (patch)
treec8230bab9c71c15acdbfeebca3ea7ad2b8741ea6 /overcloud-source.yaml
parenta0cc5554a4cf01ca09565a0641f10799aa873897 (diff)
Replace broken usage of first_private_address
The OpenStack native OS::Nova::Server gives us the full list of networks rather than AWS::EC2::Instance's contrived view of 'private' and 'public'. We know we want ctlplane, and use Fn::Select to choose that network directly. The outer Fn::Select is meant to choose the first network every time, which may not always be correct, but is at this point. Change-Id: Iae54ab8d9ac8d84f4f6e2f86ac1b66aacb687473
Diffstat (limited to 'overcloud-source.yaml')
-rw-r--r--overcloud-source.yaml80
1 files changed, 53 insertions, 27 deletions
diff --git a/overcloud-source.yaml b/overcloud-source.yaml
index 3acaa191..2c9213ad 100644
--- a/overcloud-source.yaml
+++ b/overcloud-source.yaml
@@ -90,13 +90,13 @@ Resources:
Path: nova-compute-instance.yaml
SubKey: Resources.NovaCompute0Config
Parameters:
- NovaApiHost: {"Fn::GetAtt": [notcompute, first_private_address]}
- KeystoneHost: {"Fn::GetAtt": [notcompute, first_private_address]}
- RabbitHost: {"Fn::GetAtt": [notcompute, first_private_address]}
- NeutronHost: {"Fn::GetAtt": [notcompute, first_private_address]}
- GlanceHost: {"Fn::GetAtt": [notcompute, first_private_address]}
- NovaDSN: {"Fn::Join": ['', ['mysql://nova:unset@', {"Fn::GetAtt": [notcompute, first_private_address]}, '/nova']]}
- NeutronDSN: {"Fn::Join": ['', ['mysql://neutron:unset@', {"Fn::GetAtt": [notcompute, first_private_address]}, '/neutron']]}
+ NovaApiHost: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] }
+ KeystoneHost: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] }
+ RabbitHost: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] }
+ NeutronHost: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] }
+ GlanceHost: {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ] }
+ NovaDSN: {"Fn::Join": ['', ['mysql://nova:unset@', {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ]}, '/nova']]}
+ NeutronDSN: {"Fn::Join": ['', ['mysql://neutron:unset@', {"Fn::Select": [ 0, {"Fn::Select": [ "ctlplane", {"Fn::GetAtt": [notcompute, networks]} ]} ]}, '/neutron']]}
NeutronNetworkType: "gre"
NeutronEnableTunnelling: "True"
NeutronNetworkVLANRanges: ""
@@ -133,16 +133,24 @@ Resources:
service-password:
Ref: CinderPassword
controller-address:
- Fn::GetAtt:
- - notcompute
- - first_private_address
+ Fn::Select:
+ - 0
+ - Fn::Select:
+ - 'ctlplane'
+ - Fn::GetAtt:
+ - notcompute
+ - networks
db-password: unset
glance:
db: mysql://glance:unset@localhost/glance
host:
- Fn::GetAtt:
- - notcompute
- - first_private_address
+ Fn::Select:
+ - 0
+ - Fn::Select:
+ - 'ctlplane'
+ - Fn::GetAtt:
+ - notcompute
+ - networks
service-password:
Ref: GlancePassword
os-collect-config:
@@ -167,41 +175,59 @@ Resources:
Fn::Join:
- ''
- - 'http://'
- - Fn::GetAtt:
+ - Fn::Select:
+ - 'ctlplane'
+ - Fn::GetAtt:
- notcompute
- - first_private_address
+ - networks
- ':8003'
metadata_server_url:
Fn::Join:
- ''
- - 'http://'
- - Fn::GetAtt:
- - notcompute
- - first_private_address
+ - Fn::Select:
+ - 0
+ - Fn::Select:
+ - 'ctlplane'
+ - Fn::GetAtt:
+ - notcompute
+ - networks
- ':8000'
waitcondition_server_url:
Fn::Join:
- ''
- - 'http://'
- - Fn::GetAtt:
- - notcompute
- - first_private_address
+ - Fn::Select:
+ - 0
+ - Fn::Select:
+ - 'ctlplane'
+ - Fn::GetAtt:
+ - notcompute
+ - networks
- ':8000/v1/waitcondition'
interfaces:
control: eth0
keystone:
db: mysql://keystone:unset@localhost/keystone
host:
- Fn::GetAtt:
- - notcompute
- - first_private_address
+ Fn::Select:
+ - 0
+ - Fn::Select:
+ - 'ctlplane'
+ - Fn::GetAtt:
+ - notcompute
+ - networks
nova:
compute_driver: libvirt.LibvirtDriver
db: mysql://nova:unset@localhost/nova
host:
- Fn::GetAtt:
- - notcompute
- - first_private_address
+ Fn::Select:
+ - 0
+ - Fn::Select:
+ - 'ctlplane'
+ - Fn::GetAtt:
+ - notcompute
+ - networks
metadata-proxy: true
service-password:
Ref: NovaPassword