config-bash/libs/virtualization.bash

157 lines
4.8 KiB
Bash
Raw Normal View History

2013-04-24 16:58:31 +02:00
#!/bin/bash
2013-06-14 16:59:16 +02:00
hypervisor_connect() {
2013-04-24 16:58:31 +02:00
if [ -e "${1}" ]; then echo "Usage : $0 hypervisor_name_or_ip"; return 1; fi
hypervisor=${1}
echo
echo "Trying to start interactive virsh session on ${hypervisor}"
2013-12-05 13:41:54 +01:00
term_change_title "virsh session for ${USER} on ${hypervisor}"
2013-04-24 16:58:31 +02:00
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system
}
2013-06-14 16:59:16 +02:00
hypervisor_command() {
2013-04-24 16:58:31 +02:00
if [ -e "${1}" ]; then echo "Usage : $0 hypervisor_name_or_ip"; return 1; fi
hypervisor=${1}
shift
echo
echo "Trying to exec virsh command ($*) on ${hypervisor}"
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system "$*"
}
2013-06-14 16:59:16 +02:00
vm_create() {
2013-04-24 16:58:31 +02:00
if [ $# -ne 5 ]; then echo "Usage : $0 hypervisor_name_or_ip vm_name vm_ram_size vm_disk_size vm_mac"; return 1; fi
hypervisor=${1}
name=${2}
ramsize=${3}
disksize=${4}
mac=${5}
#mac=$( grep ${name} ~/repositories/fai/config-dhcp/dhcpd-hosts.conf | sed -e 's/^.*hardware.*ethernet\s*\([0-9a-zA-Z:]*\);.*$/\1/' )
echo "Creating VM with virt-install"
virt-install --connect=qemu+ssh://${USER}@${hypervisor}/system \
--name=${name} \
--description="${name}" \
--cpu=host \
--ram=${ramsize} \
--disk=/dev/lvm_guests_system/${name},size=${disksize},bus=virtio,cache=writethrough,io=native \
--network=bridge=br192,mac=${mac},model=virtio \
--os-type=linux \
--os-variant=debiansqueeze \
--boot=network,hd,menu=on \
--pxe \
--graphics=vnc \
--noautoconsole
echo "Done"
}
2013-06-14 16:59:16 +02:00
vm_start() {
2013-04-24 16:58:31 +02:00
if [ $# -ne 2 ]; then echo "Usage : $0 hypervisor_name_or_ip vm_name"; return 1; fi
hypervisor=${1}
name=${2}
echo
echo "Trying to start ${name} on ${hypervisor} with virsh"
2013-06-14 16:59:16 +02:00
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system start ${name}
2013-04-24 16:58:31 +02:00
}
2013-06-14 16:59:16 +02:00
vm_stop() {
2013-04-24 16:58:31 +02:00
if [ $# -ne 2 ]; then echo "Usage : $0 hypervisor_name_or_ip vm_name"; return 1; fi
hypervisor=${1}
name=${2}
echo
echo "Trying to stop ${name} on ${hypervisor} with virsh"
2013-06-14 16:59:16 +02:00
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system shutdown ${name}
2013-04-24 16:58:31 +02:00
}
2013-06-14 16:59:16 +02:00
vm_destroy() {
2013-04-24 16:58:31 +02:00
if [ $# -ne 2 ]; then echo "Usage : $0 hypervisor_name_or_ip vm_name"; return 1; fi
hypervisor=${1}
name=${2}
echo
echo "Trying to destroy ${name} on ${hypervisor} with virsh"
2013-06-14 16:59:16 +02:00
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system destroy ${name}
2013-04-24 16:58:31 +02:00
}
2013-06-14 16:59:16 +02:00
vm_connect() {
2013-04-24 16:58:31 +02:00
if [ $# -ne 2 ]; then echo "Usage : $0 hypervisor_name_or_ip vm_name"; return 1; fi
hypervisor=${1}
name=${2}
echo
echo "Trying to connect to ${name} on ${hypervisor} with virsh"
2013-12-05 13:41:54 +01:00
term_change_title "virsh session for ${USER} on ${hypervisor} : ${name} console"
2013-06-14 16:59:16 +02:00
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system ttyconsole ${name}
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system console ${name}
2013-04-24 16:58:31 +02:00
}
#### A tester
2013-06-14 16:59:16 +02:00
vm_change_bridge() {
2013-04-24 16:58:31 +02:00
2013-06-14 16:59:16 +02:00
if [ $# -ne 4 ]; then echo "Usage : $0 hypervisor_name_or_ip vm_name vm_mac vm_new_bridge"; return 1; fi
2013-04-24 16:58:31 +02:00
hypervisor=${1}
name=${2}
mac=${3}
bridge=${4}
2013-06-14 16:59:16 +02:00
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system domiflist ${name}
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system detach-interface --config --domain ${name} --type bridge --mac ${mac}
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system attach-interface --config --domain ${name} --type bridge --mac ${mac} --source ${bridge}
virsh --connect=qemu+ssh://${USER}@${hypervisor}/system domiflist ${name}
2013-04-24 16:58:31 +02:00
}
#### A tester
2013-06-14 16:59:16 +02:00
vm_add_data_disk() {
2013-04-24 16:58:31 +02:00
if [ $# -ne 2 ]; then echo "Usage : $0 hypervisor_name_or_ip vm_name size"; return 1; fi
hypervisor=${1}
name=${2}
size=${3}
#pool-list
#vol-create-as --pool guests_data --name virt-cha-mirror --capacity 200G --format raw
#attach-disk virt-cha-mirror /dev/lvm_guests_data/virt-cha-mirror vdb --cache writethrough
#domblklist virt-cha-mirror
}
#### bash completion
_hypervisors() {
if [ -e ~/.ssh/config ]; then
configured_hypervisors=$(cat ~/.ssh/config | egrep -i "^\s*host\s+[a-zA-Z]" | sed -e "s/^host\s*//i" | grep -i hypervisor)
fi
if [ -e ~/.ssh/known_hosts ]; then
2013-12-05 13:41:54 +01:00
known_hypervisors=$(cat ~/.ssh/known_hosts | cut -f 1 -d ' ' | sed -e 's/,.*//g' | grep -v "\[" | grep -i hypervisor | uniq)
2013-04-24 16:58:31 +02:00
fi
echo $configured_hypervisors $known_hypervisors
}
#complete -W "$(cat ~/.ssh/config | egrep -i "^\s*host\s+[a-zA-Z]" | sed -e "s/^host\s*//i" | grep -i hypervisor)" hypervisor_connect
complete -W "$(_hypervisors)" hypervisor_connect
complete -W "$(_hypervisors)" hypervisor_command
complete -W "$(_hypervisors)" vm_create
complete -W "$(_hypervisors)" vm_start
complete -W "$(_hypervisors)" vm_stop
complete -W "$(_hypervisors)" vm_connect
2013-06-14 16:59:16 +02:00
complete -W "$(_hypervisors)" vm_change_bridge