Fix scaling with Heat and Neutron

Closes-bug: #1376829

Change-Id: Icbc950cc9e5f31871ea96dd1c7846fafdad444f4
This commit is contained in:
Sergey Reshetnyak 2014-10-03 10:58:47 +04:00
parent ec880ae194
commit 4e9c29facb
3 changed files with 14 additions and 8 deletions

View File

@ -2,6 +2,7 @@
"Type" : "OS::Neutron::Port", "Type" : "OS::Neutron::Port",
"Properties" : { "Properties" : {
%(security_groups)s %(security_groups)s
"network_id" : "%(fixed_net_id)s" "network_id" : "%(fixed_net_id)s",
"replacement_policy": "AUTO"
} }
} }

View File

@ -13,7 +13,8 @@
"cluster-worker-001-port" : { "cluster-worker-001-port" : {
"Type" : "OS::Neutron::Port", "Type" : "OS::Neutron::Port",
"Properties" : { "Properties" : {
"network_id" : "private_net" "network_id" : "private_net",
"replacement_policy": "AUTO"
} }
}, },
"cluster-worker-001-floating" : { "cluster-worker-001-floating" : {
@ -41,7 +42,8 @@
"cluster-worker-002-port" : { "cluster-worker-002-port" : {
"Type" : "OS::Neutron::Port", "Type" : "OS::Neutron::Port",
"Properties" : { "Properties" : {
"network_id" : "private_net" "network_id" : "private_net",
"replacement_policy": "AUTO"
} }
}, },
"cluster-worker-002-floating" : { "cluster-worker-002-floating" : {
@ -69,7 +71,8 @@
"cluster-master-001-port" : { "cluster-master-001-port" : {
"Type" : "OS::Neutron::Port", "Type" : "OS::Neutron::Port",
"Properties" : { "Properties" : {
"network_id" : "private_net" "network_id" : "private_net",
"replacement_policy": "AUTO"
} }
}, },
"cluster-master-001-floating" : { "cluster-master-001-floating" : {
@ -96,4 +99,4 @@
}, },
"Outputs" : {} "Outputs" : {}
} }

View File

@ -6,7 +6,8 @@
"cluster-worker-001-port" : { "cluster-worker-001-port" : {
"Type" : "OS::Neutron::Port", "Type" : "OS::Neutron::Port",
"Properties" : { "Properties" : {
"network_id" : "private_net" "network_id" : "private_net",
"replacement_policy": "AUTO"
} }
}, },
"cluster-worker-001-floating" : { "cluster-worker-001-floating" : {
@ -63,7 +64,8 @@
"cluster-master-001-port" : { "cluster-master-001-port" : {
"Type" : "OS::Neutron::Port", "Type" : "OS::Neutron::Port",
"Properties" : { "Properties" : {
"network_id" : "private_net" "network_id" : "private_net",
"replacement_policy": "AUTO"
} }
}, },
"cluster-master-001-floating" : { "cluster-master-001-floating" : {
@ -90,4 +92,4 @@
}, },
"Outputs" : {} "Outputs" : {}
} }