Merge "Fix scaling with Heat and Neutron"

This commit is contained in:
Jenkins 2014-10-04 07:59:12 +00:00 committed by Gerrit Code Review
commit f80cc70959
3 changed files with 14 additions and 8 deletions

View File

@ -2,6 +2,7 @@
"Type" : "OS::Neutron::Port",
"Properties" : {
%(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" : {
"Type" : "OS::Neutron::Port",
"Properties" : {
"network_id" : "private_net"
"network_id" : "private_net",
"replacement_policy": "AUTO"
}
},
"cluster-worker-001-floating" : {
@ -41,7 +42,8 @@
"cluster-worker-002-port" : {
"Type" : "OS::Neutron::Port",
"Properties" : {
"network_id" : "private_net"
"network_id" : "private_net",
"replacement_policy": "AUTO"
}
},
"cluster-worker-002-floating" : {
@ -69,7 +71,8 @@
"cluster-master-001-port" : {
"Type" : "OS::Neutron::Port",
"Properties" : {
"network_id" : "private_net"
"network_id" : "private_net",
"replacement_policy": "AUTO"
}
},
"cluster-master-001-floating" : {
@ -96,4 +99,4 @@
},
"Outputs" : {}
}
}

View File

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