aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated/undercloud-vlan-port.yaml
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-10-01 17:41:22 +0000
committerGerrit Code Review <review@openstack.org>2015-10-01 17:41:22 +0000
commitd29003ac6d1c61db65b4ca3272ecbde3ea0942be (patch)
treef8206d39d7b51cf0f28bcfb26fd44a9f5732d69d /deprecated/undercloud-vlan-port.yaml
parent2ceb9a61111e48f3ccee68732291e40897634968 (diff)
parent4425d007fddd3fff904040d5233ffe485fd7e84f (diff)
Merge "Deprecate the undercloud templates."
Diffstat (limited to 'deprecated/undercloud-vlan-port.yaml')
-rw-r--r--deprecated/undercloud-vlan-port.yaml37
1 files changed, 37 insertions, 0 deletions
diff --git a/deprecated/undercloud-vlan-port.yaml b/deprecated/undercloud-vlan-port.yaml
new file mode 100644
index 00000000..7e39f5fc
--- /dev/null
+++ b/deprecated/undercloud-vlan-port.yaml
@@ -0,0 +1,37 @@
+outputs:
+ PublicIP:
+ description: Address for registering endpoints in the cloud.
+ value: {get_attr: [undercloud_VLANPort, fixed_ips, 0, ip_address]}
+resources:
+ # Override the main template which can also supply a static route.
+ undercloud_99VLANPort:
+ type: OS::Heat::StructuredDeployment
+ properties:
+ config: {get_resource: undercloudVLANPortConfig}
+ server: {get_resource: undercloud}
+ signal_transport: NO_SIGNAL
+ undercloudVLANPortConfig:
+ type: OS::Heat::StructuredConfig
+ properties:
+ config:
+ neutron:
+ ovs:
+ public_interface_tag_ip:
+ Fn::Join:
+ - '/'
+ - - {get_attr: [undercloud_VLANPort, fixed_ips, 0, ip_address]}
+ - '24'
+ # This should also be pulled out of the subnet. May need a
+ # neutron fix too - XXX make into a parameter and feed it
+ # in via _undercloud.sh for now.
+ # Tell the instance to apply the default route.
+ # Reinstate when https://bugs.launchpad.net/heat/+bug/1336656 is
+ # sorted
+ # public_interface_route:
+ # get_attr: [undercloud_VLANPort, fixed_ips, 0, subnet, gateway_ip]
+ undercloud_VLANPort:
+ type: OS::Neutron::Port
+ properties:
+ name: undercloud_vlan
+ network: public
+ replacement_policy: AUTO \ No newline at end of file