Merge 93a1a511b1657e56e69e0fc3113cf9923cb0ba1f into 12dba1c55b807f7acf5b1ced2d7e0a372230fe3b

This commit is contained in:
Andriyanov Nikita 2025-04-10 16:25:58 +09:30 committed by GitHub
commit 9d59da4276
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,6 +41,9 @@ HOLD="-"
CM="${GN}${CL}"
CROSS="${RD}${CL}"
THIN="discard=on,ssd=1,"
DEBIAN_NAME="Debian 12 (default)"
UBUNTU_NAME="Ubuntu 24.04 with cloud-init"
set -e
trap 'error_handler $LINENO "$BASH_COMMAND"' ERR
trap cleanup EXIT
@ -145,6 +148,9 @@ function default_settings() {
VMID="$NEXTID"
FORMAT=",efitype=4m"
MACHINE=""
IMAGE=$DEBIAN_NAME
URL="https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-nocloud-$(dpkg --print-architecture).qcow2"
CLOUD_INIT=""
DISK_CACHE=""
HN="docker"
CPU_TYPE=""
@ -207,6 +213,24 @@ function advanced_settings() {
exit-script
fi
if IMG=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "IMAGE TYPE" --radiolist --cancel-button Exit-Script "Choose Type" 10 58 2 \
"debian" "$DEBIAN_NAME" ON \
"ubuntu" "$UBUNTU_NAME" OFF \
3>&1 1>&2 2>&3); then
if [ $IMG = debian ]; then
echo -e "${DGN}Using Image Type: ${BGN}$DEBIAN_NAME${CL}"
IMAGE=$DEBIAN_NAME
URL="https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-nocloud-$(dpkg --print-architecture).qcow2"
else
echo -e "${DGN}Using Machine Type: ${BGN}$UBUNTU_NAME${CL}"
IMAGE=$UBUNTU_NAME
URL="https://cloud-images.ubuntu.com/releases/noble/release/ubuntu-24.04-server-cloudimg-$(dpkg --print-architecture).img"
CLOUD_INIT="cloudinit"
fi
else
exit-script
fi
if DISK_CACHE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "DISK CACHE" --radiolist "Choose" --cancel-button Exit-Script 10 58 2 \
"0" "None (Default)" ON \
"1" "Write Through" OFF \
@ -384,8 +408,7 @@ else
fi
msg_ok "Using ${CL}${BL}$STORAGE${CL} ${GN}for Storage Location."
msg_ok "Virtual Machine ID is ${CL}${BL}$VMID${CL}."
msg_info "Retrieving the URL for the Debian 12 Qcow2 Disk Image"
URL="https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-nocloud-$(dpkg --print-architecture).qcow2"
msg_info "Retrieving the URL for the ${IMAGE} Disk Image"
sleep 2
msg_ok "${CL}${BL}${URL}${CL}"
curl -f#SL -o "$(basename "$URL")" "$URL"
@ -415,18 +438,22 @@ for i in {0,1}; do
eval DISK${i}_REF=${STORAGE}:${DISK_REF:-}${!disk}
done
if [ -n "$CLOUD_INIT" ]; then
CLOUD_INIT="--ide2 ${STORAGE}:${CLOUD_INIT}"
fi
msg_info "Installing Pre-Requisite libguestfs-tools onto Host"
apt-get -qq update && apt-get -qq install libguestfs-tools lsb-release -y >/dev/null
msg_ok "Installed libguestfs-tools successfully"
msg_info "Adding Docker and Docker Compose Plugin to Debian 12 Qcow2 Disk Image"
msg_info "Adding Docker and Docker Compose Plugin to ${IMAGE} Disk Image"
virt-customize -q -a "${FILE}" --install qemu-guest-agent,apt-transport-https,ca-certificates,curl,gnupg,software-properties-common,lsb-release >/dev/null &&
virt-customize -q -a "${FILE}" --run-command "mkdir -p /etc/apt/keyrings && curl -fsSL https://download.docker.com/linux/debian/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg" >/dev/null &&
virt-customize -q -a "${FILE}" --run-command "echo 'deb [arch=amd64 signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian bookworm stable' > /etc/apt/sources.list.d/docker.list" >/dev/null &&
virt-customize -q -a "${FILE}" --run-command "apt-get update -qq && apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin" >/dev/null &&
virt-customize -q -a "${FILE}" --run-command "systemctl enable docker" >/dev/null &&
virt-customize -q -a "${FILE}" --run-command "echo -n > /etc/machine-id" >/dev/null
msg_ok "Added Docker and Docker Compose Plugin to Debian 12 Qcow2 Disk Image successfully"
msg_ok "Added Docker and Docker Compose Plugin to ${IMAGE} Disk Image successfully"
msg_info "Creating a Docker VM"
@ -438,7 +465,8 @@ qm set $VMID \
-efidisk0 ${DISK0_REF}${FORMAT} \
-scsi0 ${DISK1_REF},${DISK_CACHE}${THIN}size=2G \
-boot order=scsi0 \
-serial0 socket >/dev/null
-serial0 socket >/dev/null \
${CLOUD_INIT}
qm resize $VMID scsi0 8G >/dev/null
qm set $VMID --agent enabled=1 >/dev/null