blob: 0754b1f4898229ef31160c6a01fb8a807d84718f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
host_vm_dir=$WORK_DIR/vm
function tear_down_machines() {
for i in $HOSTNAMES; do
sudo virsh destroy $i
sudo virsh undefine $i
rm -rf $host_vm_dir/$i
done
}
function reboot_hosts() {
log_warn "reboot_hosts do nothing"
}
function launch_host_vms() {
old_ifs=$IFS
IFS=,
tear_down_machines
#function_bod
mac_array=($machines)
log_info "bringing up pxe boot vms"
i=0
for host in $HOSTNAMES; do
log_info "creating vm disk for instance $host"
vm_dir=$host_vm_dir/$host
mkdir -p $vm_dir
sudo qemu-img create -f raw $vm_dir/disk.img ${VIRT_DISK}
# create vm xml
sed -e "s/REPLACE_MEM/$VIRT_MEM/g" \
-e "s/REPLACE_CPU/$VIRT_CPUS/g" \
-e "s/REPLACE_NAME/$host/g" \
-e "s#REPLACE_IMAGE#$vm_dir/disk.img#g" \
-e "s/REPLACE_BOOT_MAC/${mac_array[i]}/g" \
-e "s/REPLACE_BRIDGE_MGMT/br_install/g" \
-e "s/REPLACE_BRIDGE_TENANT/br_install/g" \
-e "s/REPLACE_BRIDGE_PUBLIC/br_install/g" \
-e "s/REPLACE_BRIDGE_STORAGE/br_install/g" \
$COMPASS_DIR/deploy/template/vm/host.xml\
> $vm_dir/libvirt.xml
sudo virsh define $vm_dir/libvirt.xml
sudo virsh start $host
let i=i+1
done
IFS=$old_ifs
}
function get_host_macs() {
local config_file=$WORK_DIR/installer/compass-install/install/group_vars/all
local mac_generator=${COMPASS_DIR}/deploy/mac_generator.sh
local machines=
chmod +x $mac_generator
mac_array=`$mac_generator $VIRT_NUMBER`
machines=`echo $mac_array|sed 's/ /,/g'`
echo "test: true" >> $config_file
echo "pxe_boot_macs: [${machines}]" >> $config_file
echo $machines
}
|