packer/rocky-linux-9/rocky-linux-9.pkr.hcl

177 lines
4.5 KiB
HCL
Raw Normal View History

2023-10-30 14:37:56 -04:00
# Rocky Linux 9 Server
# ---
# Packer Template to create an Rocky Linux 9 Server on Proxmox
2023-10-31 15:55:32 -04:00
packer {
required_plugins {
proxmox = {
version = ">= 1.1.3"
source = "github.com/hashicorp/proxmox"
}
}
}
2023-10-30 14:37:56 -04:00
# Variable Definitions
variable "proxmox_api_url" {
type = string
}
variable "proxmox_api_token_id" {
type = string
}
variable "proxmox_api_token_secret" {
type = string
sensitive = true
2023-10-30 15:28:12 -04:00
}
2023-10-31 15:55:32 -04:00
variable "proxmox_ssh_username" {
type = string
sensitive = true
}
variable "proxmox_ssh_password" {
type = string
sensitive = true
}
source "proxmox-iso" "rocky-linux-9" {
2023-10-30 15:28:12 -04:00
# Proxmox Connection Settings
proxmox_url = "${var.proxmox_api_url}"
username = "${var.proxmox_api_token_id}"
token = "${var.proxmox_api_token_secret}"
# (Optional) Skip TLS Verification
insecure_skip_tls_verify = true
# VM General Settings
node = "boba"
2023-10-31 15:55:32 -04:00
vm_id = "4900"
2023-10-30 15:28:12 -04:00
vm_name = "rocky-linux-9"
template_description = "Rocky Linux 9 Server Image"
2023-10-31 15:55:32 -04:00
machine = "q35"
bios = "ovmf"
os = "l26"
efi_config {
efi_storage_pool = "fast"
}
2023-10-30 15:28:12 -04:00
# VM OS Settings
# (Option 1) Local ISO File
# iso_file = "local:iso/ubuntu-20.04.2-live-server-amd64.iso"
# - or -
# (Option 2) Download ISO
# iso_url = "https://releases.ubuntu.com/20.04/ubuntu-20.04.3-live-server-amd64.iso"
# iso_checksum = "f8e3086f3cea0fb3fefb29937ab5ed9d19e767079633960ccb50e76153effc98"
iso_file = "data:iso/rocky-9.2-x86_64-dvd.iso"
iso_storage_pool = "data"
unmount_iso = true
# VM System Settings
qemu_agent = true
# VM Hard Disk Settings
scsi_controller = "virtio-scsi-pci"
disks {
disk_size = "40G"
2023-10-31 15:55:32 -04:00
format = "raw"
2023-10-30 15:28:12 -04:00
storage_pool = "fast"
type = "virtio"
}
# VM CPU Settings
cores = "2"
2023-10-31 15:55:32 -04:00
cpu_type = "host"
2023-10-30 15:28:12 -04:00
# VM Memory Settings
memory = "2048"
# VM Network Settings
network_adapters {
model = "virtio"
bridge = "vmbr0"
firewall = "false"
}
# VM Cloud-Init Settings
cloud_init = true
cloud_init_storage_pool = "fast"
# PACKER Boot Commands
2023-10-31 15:55:32 -04:00
boot_command = ["e<down><down><end><bs><bs><bs><bs><bs>inst.text inst.ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/kickstart.cfg<leftCtrlOn>x<leftCtrlOff>"]
boot_wait = "5s"
2023-10-30 15:28:12 -04:00
# PACKER Autoinstall Settings
http_directory = "http"
# (Optional) Bind IP Address and Port
2023-10-31 15:55:32 -04:00
http_bind_address = "0.0.0.0"
http_port_min = 8802
http_port_max = 8802
2023-10-30 15:28:12 -04:00
2023-10-31 15:55:32 -04:00
ssh_username = "${var.proxmox_ssh_username}"
2023-10-30 15:28:12 -04:00
# (Option 1) Add your Password here
2023-10-31 15:55:32 -04:00
ssh_password = "${var.proxmox_ssh_password}"
2023-10-30 15:28:12 -04:00
# - or -
# (Option 2) Add your Private SSH KEY file here
2023-10-31 15:55:32 -04:00
# ssh_private_key_file = "~/.ssh/id_rsa"
2023-10-30 15:28:12 -04:00
# Raise the timeout, when installation takes longer
ssh_timeout = "20m"
}
# Build Definition to create the VM Template
build {
name = "rocky-linux-9"
2023-10-31 15:55:32 -04:00
sources = ["source.proxmox-iso.rocky-linux-9"]
2023-10-30 15:28:12 -04:00
# Provisioning the VM Template for Cloud-Init Integration in Proxmox #1
provisioner "shell" {
inline = [
2023-10-31 15:55:32 -04:00
"echo 'Updating system...'",
2023-10-30 15:28:12 -04:00
"dnf -y update",
2023-10-31 15:55:32 -04:00
"echo 'Installing python and ansible...'",
2023-10-30 15:28:12 -04:00
"dnf -y install python3",
"dnf -y install python3-pip",
"pip3 install ansible",
2023-10-31 15:55:32 -04:00
"echo 'Installing cloud-init...'",
2023-10-30 15:28:12 -04:00
"dnf -y install cloud-init",
2023-10-31 15:55:32 -04:00
"echo 'manual_cache_clean: True' > /etc/cloud/cloud.cfg.d/99-manual.cfg",
2023-10-30 15:28:12 -04:00
]
}
provisioner "shell" {
inline = [
2023-10-31 15:55:32 -04:00
"dnf install -y cloud-init qemu-guest-agent cloud-utils-growpart gdisk",
"systemctl enable qemu-guest-agent",
2023-10-30 15:28:12 -04:00
"shred -u /etc/ssh/*_key /etc/ssh/*_key.pub",
"rm -f /var/run/utmp",
">/var/log/lastlog",
">/var/log/wtmp",
">/var/log/btmp",
"rm -rf /tmp/* /var/tmp/*",
"unset HISTFILE; rm -rf /home/*/.*history /root/.*history",
"rm -f /root/*ks",
"passwd -d root",
"passwd -l root",
"rm -f /etc/ssh/ssh_config.d/allow-root-ssh.conf"
]
}
# Provisioning the VM Template for Cloud-Init Integration in Proxmox #2
provisioner "file" {
source = "files/99-pve.cfg"
destination = "/tmp/99-pve.cfg"
}
# Provisioning the VM Template for Cloud-Init Integration in Proxmox #3
provisioner "shell" {
inline = [ "sudo cp /tmp/99-pve.cfg /etc/cloud/cloud.cfg.d/99-pve.cfg" ]
}
# Add additional provisioning scripts here
# ...
2023-10-30 14:37:56 -04:00
}