Last active
August 18, 2024 18:18
-
-
Save casperghst42/9f03f331d357f6bcda5285afdec87007 to your computer and use it in GitHub Desktop.
Create a cloud-init Debian 12 image on proxmox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Author: Casper Pedersen (github.com/casperghst42) | |
# License: GPL2 | |
wget https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2 | |
virt-customize -a debian-12-generic-amd64.qcow2 --install qemu-guest-agent --install resolvconf --install systemd-resolved --update --run-command 'mkdir -p /etc/network/interfaces.d' --run-command 'echo "auto ens18" >> /etc/network/interfaces.d/ens18' --run-command 'echo "iface ens18 inet manual" >> /etc/network/interfaces.d/ens18' | |
qm create 100000 --name "debian12-cloudinit-template" --memory 2048 --net0 virtio,bridge=vmbr0 | |
qm importdisk 100000 debian-12-generic-amd64.qcow2 local-lvm -format qcow2 | |
qm set 100000 --scsihw virtio-scsi-pci --scsi0 local-lvm:vm-90000-disk-0 | |
qm resize 90000 scsi0 10G | |
qm set 100000 --ide2 local-lvm:cloudinit | |
qm set 100000 --boot c --bootdisk scsi0 | |
qm set 100000 --serial0 socket --vga serial0 |
to install:
virt-customize
apt update && apt install libguestfs-tools -y
Thanks.
I use ansible to make sure that my PVM's have all the tools required.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
to install:
virt-customize
apt update && apt install libguestfs-tools -y