cloudinit/Scripts/CreateCloudInitVM.sh

188 lines
6.3 KiB
Bash
Raw Normal View History

2021-12-03 08:05:29 +01:00
#!/bin/bash
# Description: This simple Scripts creates an Virtualmachine on Proxmox, with the Qemu-Cli.
# Usage: Just Execute the script, it's a guided Script (chmod +x CreateCloudInitVM.sh && ./ CreateCloudInitVM.sh)
#
# Creator: Janic Joël Voser, Mettmenstetten - CH
# Date of Creation: 03.12.2021
#
# Active Maintainer: Janic Joël Voser
# Date of Last Maintenance: 03.12.2021
#
# Current State: Development
# Version: 0.4.0
2021-12-03 08:05:29 +01:00
# Version History:
# v0.0.1 - Basic Script Structure
2021-12-03 08:57:32 +01:00
# v0.1.0 - Get the User input
# v0.2.0 - Gather Virtual Machine ID
# v0.3.0 - Get & Select the Image of the Virtualmachine
# v0.4.0 - Create the VM & Gather additional Information
2021-12-03 08:05:29 +01:00
# Planned Features:
# - [X] Guided VM Creation
# - [X] Image Download URL
# - [X] Image Selection
2021-12-03 08:57:32 +01:00
# - [X] VM-ID check
# - [X] Choose Memorysize
# - [X] Choose CPU cores
# - [X] Choose Network
# - [X] IMG & ISO & qcow2 support
2021-12-03 08:05:29 +01:00
# Global Conigurable Variables
2021-12-03 08:57:32 +01:00
# Global Constants
IMAGE_STORAGE_LOCATION="/var/lib/vz/template/iso/"
DEFAULT_VM_STORAGE="tank-vms"
2021-12-03 08:05:29 +01:00
# Functions
## Gather the ID of the Virtual machine
2021-12-03 08:57:32 +01:00
function gather_vmid {
echo "Already used IDs"
qm list | tr -s ' ' | cut -d ' ' -f 2,3 # Get the already used VMIDs & VM-Name
2021-12-03 08:57:32 +01:00
echo "Enter the new ID of your Virtual Machine (It must be unused)"
read VM_ID # Get the User Input(This VMID will be used for the new created VM)
2021-12-03 08:57:32 +01:00
i=0
readarray -t VMID_ARRAY < <(qm list | tail -n +2 | tr -s ' ' | cut -d ' ' -f 2)
if [[ "${VMID_ARRAY[*]}" =~ "$VM_ID" ]]; then
2021-12-03 08:57:32 +01:00
echo "Your selected Virtual Machine ID is already in use, choose an other ID"
gather_vmid
fi
}
## Download a new Image in to the Image Storage
function get_img {
echo "Do you wish to download an Image? (yes/no)"
read DOWNLOAD_IMG_yn
case "$DOWNLOAD_IMG_yn" in
yes|YES|Yes|y|Y)
echo "Please enter the URL of your Image"
read DOWNLOAD_IMG_URL
wget "$DOWNLOAD_IMG_URL" --directory-prefix="$IMAGE_STORAGE_LOCATION"
if [ $? -eq 0 ]; then
echo "Download was Successful"
else
echo "Download failed"
echo "Retry or Downloadfile manually"
get_img
fi
;;
no|NO|No|n|N)
echo "Carrying on without a new Image"
;;
*)
echo "Invalid Argument: Please type \"yes\" or \"no\""
;;
esac
}
## Select an Image
function sel_img {
echo "The following list represents all Images which exist on the Hoststorage"
ls $IMAGE_STORAGE_LOCATION -l | tr -s ' ' | cut -d' ' -f 6-9
readarray -t OS_IMG_ARRAY < <(ls $IMAGE_STORAGE_LOCATION -l | tr -s ' ' | cut -d' ' -f 9)
echo "Please enter the correct Image Name(shown above)"
read OS_IMG_NAME
if ! [[ "${OS_IMG_ARRAY[*]}" =~ "$OS_IMG_NAME" ]]; then
echo "Your selected Image does not exist"
echo "Maybe it was a Typo, Please check:"
echo " - Upper/Lowercase writing"
echo " - Fileextension(needs to be appended)"
echo "ProTip: Copy & Paste"
sleep 3
sel_img
fi
}
## Get the prepared Cloud-Init Image
function gather_img {
get_img
sel_img
2021-12-03 08:57:32 +01:00
}
## Gather Virtualmachine Network
function gather_vm_net {
ip -o link show | awk -F': ' '{print $2}' | grep vmbr
echo "Enter one of the above shown Network-Interfaces to add to your VM"
read VM_NET
readarray -t VM_NET_ARRAY < <(ip -o link show | awk -F': ' '{print $2}' | grep vmbr)
if ! [[ "${VM_NET_ARRAY[*]}" =~ "$VM_NET" ]]; then
echo "Your selected Network does not exist"
echo "Maybe it was a Typo, Please check:"
echo " - Upper/Lowercase writing"
echo "ProTip: Copy & Paste"
sleep 3
gather_vm_net
fi
}
## Gather hardware
function gather_hardware {
echo "Enter the amount of memory in MegaBytes"
echo "Example for 2GB = \"2048\""
read VM_RAM
echo "Enter the amount of Cpu-Cores you want to give to the Virtual machine"
read VM_CORES
gather_vm_net
}
## Gather all aditional Data
function gather_additional {
gather_vmid
echo "Enter the name of the new Virtualmachine"
read VM_NAME
}
## Gather VM_Storage
function gather_vm_storage {
echo "Please enter the Virtual Machine Storage Pool:[$DEFAULT_VM_STORAGE]"
read VM_STORAGE
VM_STORAGE=${VM_STORAGE:=$DEFAULT_VM_STORAGE}
}
## Get all the Variables from the User
2021-12-03 08:57:32 +01:00
function get_user_input {
gather_img
gather_hardware
gather_vm_storage
gather_additional
}
function vm_import_cloudinit_img {
IMG_TYPE=$(echo "$OS_IMG_NAME" | rev | cut -d "." -f 1 | rev)
if [ $IMG_TYPE == "iso" ] || [ $IMG_TYPE == "img" ];then
qm importdisk "$VM_ID" "$IMAGE_STORAGE_LOCATION$OS_IMG_NAME" "$VM_STORAGE" -format qcow2
if ! [ $? -eq 0 ];then
echo "It was not possible to convert a new Image with your values"
echo "Read the error message above"
exit
fi
elif [ $IMG_TYPE == "qcow2" ];then
qm importdisk "$VM_ID" "$IMAGE_STORAGE_LOCATION$OS_IMG_NAME" "$VM_STORAGE"
if ! [ $? -eq 0 ];then
echo "It was not possible to convert a new Image with your values"
echo "Read the error message above"
exit
fi
else
echo "Your OS-Image does not have a fileending which is supported by this scirpt"
echo "only iso & img are Supported"
exit
fi
}
function create_qm_vm {
qm create "$VM_ID" --name "$VM_NAME" --memory "$VM_RAM" --cores "$VM_CORES" --net0 virtio,bridge="$VM_NET"
if ! [ $? -eq 0 ];then
echo "It was not possible to create a Virtual machine with your values"
echo "Read the error message above"
exit
fi
vm_import_cloudinit_img
qm set $VM_ID --scsihw virtio-scsi-pci --scsi0 $VM_STORAGE:vm-$VM_ID-disk-0
if ! [ $? -eq 0 ];then
echo "It was not possible to add the custom Image to your Virtual machine"
echo "Read the error message above"
exit
fi
qm set $VM_ID --ide2 $VM_STORAGE:cloudinit --boot c --bootdisk scsi0 --serial0 socket --vga serial0
if ! [ $? -eq 0 ];then
echo "It was not possible to add an cloudinit drive to your Virtual machine"
echo "Read the error message above"
exit
fi
2021-12-03 08:57:32 +01:00
}
2021-12-03 08:05:29 +01:00
# Main Script
2021-12-03 08:57:32 +01:00
get_user_input
create_qm_vm