mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
Merge pull request #516 from coreos/local-disk-size
scripts/libvirt: Allow QEMU/KVM disk size to be customized
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
VM_MEMORY=${VM_MEMORY:-1024}
|
||||
VM_DISK=${VM_DISK:-10}
|
||||
|
||||
source "${DIR}/common.sh"
|
||||
|
||||
@@ -43,7 +44,7 @@ function usage {
|
||||
echo -e "\tdestroy\t\tdestroy the QEMU/KVM nodes"
|
||||
}
|
||||
|
||||
COMMON_VIRT_OPTS="--memory=$VM_MEMORY --vcpus=1 --pxe --disk pool=default,size=6 --os-type=linux --os-variant=generic --noautoconsole --events on_poweroff=preserve"
|
||||
COMMON_VIRT_OPTS="--memory=${VM_MEMORY} --vcpus=1 --pxe --disk pool=default,size=${VM_DISK} --os-type=linux --os-variant=generic --noautoconsole --events on_poweroff=preserve"
|
||||
|
||||
function create_docker {
|
||||
virt-install --name $NODE1_NAME --network=bridge:docker0,mac=$NODE1_MAC $COMMON_VIRT_OPTS --boot=hd,network
|
||||
|
||||
Reference in New Issue
Block a user