Initial commit
diff --git a/metadata/service/bridge/single.yml b/metadata/service/bridge/single.yml
new file mode 100644
index 0000000..9475c1f
--- /dev/null
+++ b/metadata/service/bridge/single.yml
@@ -0,0 +1,29 @@
+applications:
+- neutron
+parameters:
+ neutron:
+ bridge:
+ enabled: true
+ version: icehouse
+ migration: true
+ mtu: 1500
+ bind:
+ address: ${linux:network:host:local:address}
+ metadata:
+ host: ${linux:network:host:vip:address}
+ port: 8775
+ password: metadataPass
+ identity:
+ engine: keystone
+ host: ${linux:network:host:vip:address}
+ port: 35357
+ user: neutron
+ password: ${_secret:keystone_neutron_password}
+ tenant: service
+ message_queue:
+ engine: rabbitmq
+ host: ${linux:network:host:vip:address}
+ port: 5672
+ user: openstack
+ password: ${_secret:rabbitmq_openstack_password}
+ virtual_host: '/openstack'
diff --git a/metadata/service/control/cluster.yml b/metadata/service/control/cluster.yml
new file mode 100644
index 0000000..12a44b4
--- /dev/null
+++ b/metadata/service/control/cluster.yml
@@ -0,0 +1,34 @@
+applications:
+- neutron
+parameters:
+ neutron:
+ server:
+ enabled: true
+ fwaas: false
+ tunnel_type: vxlan
+ version: ${_param:neutron_version}
+ bind:
+ address: ${_param:cluster_local_address}
+ port: 9696
+ database:
+ engine: mysql
+ host: ${_param:cluster_vip_address}
+ port: 3306
+ name: neutron
+ user: neutron
+ password: ${_param:mysql_neutron_password}
+ identity:
+ engine: keystone
+ host: ${_param:cluster_vip_address}
+ port: 35357
+ user: neutron
+ password: ${_param:keystone_neutron_password}
+ tenant: service
+ message_queue:
+ engine: rabbitmq
+ host: ${_param:cluster_vip_address}
+ port: 5672
+ user: openstack
+ password: ${_param:rabbitmq_openstack_password}
+ virtual_host: '/openstack'
+ ha_queues: true
\ No newline at end of file
diff --git a/metadata/service/control/single.yml b/metadata/service/control/single.yml
new file mode 100644
index 0000000..bb3c6de
--- /dev/null
+++ b/metadata/service/control/single.yml
@@ -0,0 +1,34 @@
+applications:
+- neutron
+parameters:
+ neutron:
+ server:
+ enabled: true
+ plugin: ml2
+ fwaas: false
+ tunnel_type: vxlan
+ version: ${_param:neutron_version}
+ bind:
+ address: ${_param:single_address}
+ port: 9696
+ database:
+ engine: mysql
+ host: ${_param:single_address}
+ port: 3306
+ name: neutron
+ user: neutron
+ password: ${_param:mysql_neutron_password}
+ identity:
+ engine: keystone
+ host: ${_param:single_address}
+ port: 35357
+ user: neutron
+ password: ${_param:keystone_neutron_password}
+ tenant: service
+ message_queue:
+ engine: rabbitmq
+ host: ${_param:single_address}
+ port: 5672
+ user: openstack
+ password: ${_param:rabbitmq_openstack_password}
+ virtual_host: '/openstack'
diff --git a/metadata/service/switch/single.yml b/metadata/service/switch/single.yml
new file mode 100644
index 0000000..29d6749
--- /dev/null
+++ b/metadata/service/switch/single.yml
@@ -0,0 +1,33 @@
+applications:
+- neutron
+parameters:
+ neutron:
+ switch:
+ enabled: true
+ version: icehouse
+ mtu: 1500
+ tunnel_type: gre
+ bind:
+ address: ${linux:network:host:local:address}
+ database:
+ engine: mysql
+ host: ${linux:network:host:vip:address}
+ port: 3306
+ name: neutron
+ user: neutron
+ password: ${_secret:mysql_neutron_password}
+ identity:
+ engine: keystone
+ host: ${linux:network:host:vip:address}
+ port: 35357
+ user: neutron
+ password: ${_secret:keystone_neutron_password}
+ tenant: service
+ message_queue:
+ engine: rabbitmq
+ host: ${linux:network:host:vip:address}
+ port: 5672
+ user: openstack
+ password: ${_secret:rabbitmq_openstack_password}
+ virtual_host: '/openstack'
+ ha_queues: true