Provide launch several vms simultaneously.

There was a bug 1481071 which was fixed on driver side. This patch-set
does corresponding changes on the plugin level.

Change-Id: I7268c3201664190a086d69615c66309ac020e620
This commit is contained in:
Igor Gajsin 2015-08-18 19:41:17 +03:00
parent 31d9c7aae2
commit 9deb9d177a
6 changed files with 50 additions and 21 deletions

View File

@ -0,0 +1,15 @@
#!/bin/bash
. /root/openrc
router=router04
neutron router-gateway-clear $router
for port in $(neutron router-port-list $router| grep ip_a| cut -f 2 -d\ ); do
neutron router-interface-delete $router port=$port
neutron port-delete $port
done
for net in $(neutron net-list|grep '/'|cut -f 4 -d\ ); do
neutron net-delete $net
done

View File

@ -7,6 +7,7 @@ port=8080
function _nova_patch {
wget -O /usr/lib/python2.7/dist-packages/nova.patch "http://$ip:$port/plugins/$plugin_name-$plugin_version/nova.patch" && cd /usr/lib/python2.7/dist-packages/ ; patch -N -p1 < nova.patch
sed -i s/neutron_url_timeout=.*/neutron_url_timeout=3600/ /etc/nova/nova.conf
for resource in $(crm_mon -1|awk '/nova_compute_vmware/ {print $1}'); do
execute_node=$(crm resource status $resource | cut -f 6 -d\ )
if [ "$execute_node"="$(hostname)" ];
@ -16,6 +17,11 @@ function _nova_patch {
done
}
function _haproxy_config {
echo ' timeout server 1h' >> /etc/haproxy/conf.d/085-neutron.cfg
crm resource restart p_haproxy
}
function _dirty_hack {
cd /usr/lib/python2.7/dist-packages/oslo
mv messaging messaging.old
@ -41,24 +47,11 @@ function _ln {
ln -s /usr/lib/python2.7/dist-packages/oslo/rootwrap
}
function _del_network {
. /root/openrc
router=router04
neutron router-gateway-clear $router
for port in $(neutron router-port-list $router| grep ip_a| cut -f 2 -d\ ); do
neutron router-interface-delete $router port=$port
neutron port-delete $port
done
for net in $(neutron net-list|grep '/'|cut -f 4 -d\ ); do
neutron net-delete $net
done
}
function _neutron_restart {
service neutron-server restart
}
_del_network
_haproxy_config
_nova_patch
_core_install
_dirty_hack

View File

@ -37,4 +37,5 @@ class {'vmware_dvs':
nets => $nets,
keystone_admin_tenant => $keystone_admin_tenant,
driver_name => 'vmware_dvs',
neutron_url_timeout => '3600',
}

View File

@ -12,9 +12,17 @@
# License for the specific language governing permissions and limitations
# under the License.
# == Class: ::vmware_dvs
#
# edit /etc/neutron/neturon.conf and /etc/neutron/plugin.ini
# recreate net04 and net04_ext on primary-controller
# restart the neutron-server
#
# === Parameters
#
# [*vsphere_hostname*]
# (required) String. This is a name or ip of VMware vSphere server
#
class vmware_dvs(
$vsphere_hostname,
$vsphere_login,
@ -25,6 +33,7 @@ class vmware_dvs(
$nets,
$keystone_admin_tenant,
$driver_name = 'vmware_dvs',
$neutron_url_timeout = '3600',
)
{
$true_network_maps = get_network_maps($network_maps, $neutron_physnet)
@ -47,7 +56,12 @@ class vmware_dvs(
setting => 'mechanism_drivers',
subsetting => $driver_name,
subsetting_separator => ','
}
} ->
exec {'restart_neutron':
command => 'service neutron-server restart',
path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
}
if $primary_controller {
Service<| title == 'neutron-server' |> ->

View File

@ -3,7 +3,7 @@ name: fuel-plugin-vmware-dvs
# Human-readable name for your plugin
title: use Neutron VMware DVS ML2 plugin
# Plugin version
version: '1.0.0'
version: '1.0.2'
# Description
description: Enable to use plugin vmware_dvs for Neutron
# Required fuel version

View File

@ -1,19 +1,25 @@
- role: ['primary-controller','controller']
- role: ['primary-controller']
stage: post_deployment/7000
type: shell
parameters:
cmd: ./install_the_driver.sh
timeout: 720
cmd: ./del_predefined_networks.sh 2>&1 | tee -a /tmp/dep_pre_nets.log
timeout: 120
- role: ['primary-controller','controller']
stage: post_deployment/7001
type: shell
parameters:
cmd: ./install_the_driver.sh 2>&1 | tee -a /tmp/ins_the_drivers.log
timeout: 720
- role: ['primary-controller','controller']
stage: post_deployment/7002
type: puppet
parameters:
puppet_manifest: puppet/manifests/site.pp
puppet_modules: puppet/modules:/etc/puppet/modules
timeout: 720
- role: ['primary-controller','controller']
stage: post_deployment/7002
stage: post_deployment/7003
type: shell
parameters:
cmd: service neutron-server restart
timeout: 60
timeout: 60