From efc42fa00bb28ac842ddd028274166c82f0755ee Mon Sep 17 00:00:00 2001 From: Christian Lempa Date: Tue, 26 Apr 2022 11:57:27 +0200 Subject: [PATCH] ubuntu jammy jellyfish packer update --- .../ubuntu-server-focal-docker.pkr.hcl | 2 +- .../ubuntu-server-focal.pkr.hcl | 2 +- .../files/99-pve.cfg | 1 + .../ubuntu-server-jammy-docker/http/meta-data | 0 .../ubuntu-server-jammy-docker/http/user-data | 33 ++++ .../ubuntu-server-jammy-docker.pkr.hcl | 149 ++++++++++++++++++ .../ubuntu-server-jammy/files/99-pve.cfg | 1 + .../ubuntu-server-jammy/http/meta-data | 0 .../ubuntu-server-jammy/http/user-data | 33 ++++ .../ubuntu-server-jammy.pkr.hcl | 141 +++++++++++++++++ 10 files changed, 360 insertions(+), 2 deletions(-) create mode 100644 packer/proxmox/ubuntu-server-jammy-docker/files/99-pve.cfg create mode 100644 packer/proxmox/ubuntu-server-jammy-docker/http/meta-data create mode 100644 packer/proxmox/ubuntu-server-jammy-docker/http/user-data create mode 100644 packer/proxmox/ubuntu-server-jammy-docker/ubuntu-server-jammy-docker.pkr.hcl create mode 100644 packer/proxmox/ubuntu-server-jammy/files/99-pve.cfg create mode 100644 packer/proxmox/ubuntu-server-jammy/http/meta-data create mode 100644 packer/proxmox/ubuntu-server-jammy/http/user-data create mode 100644 packer/proxmox/ubuntu-server-jammy/ubuntu-server-jammy.pkr.hcl diff --git a/packer/proxmox/ubuntu-server-focal-docker/ubuntu-server-focal-docker.pkr.hcl b/packer/proxmox/ubuntu-server-focal-docker/ubuntu-server-focal-docker.pkr.hcl index b6d1cde..9c4ea54 100644 --- a/packer/proxmox/ubuntu-server-focal-docker/ubuntu-server-focal-docker.pkr.hcl +++ b/packer/proxmox/ubuntu-server-focal-docker/ubuntu-server-focal-docker.pkr.hcl @@ -53,7 +53,7 @@ source "proxmox" "ubuntu-server-focal-docker" { format = "qcow2" storage_pool = "local-lvm" storage_pool_type = "lvm" - type = "sata" + type = "virtio" } # VM CPU Settings diff --git a/packer/proxmox/ubuntu-server-focal/ubuntu-server-focal.pkr.hcl b/packer/proxmox/ubuntu-server-focal/ubuntu-server-focal.pkr.hcl index ff9ca2e..9dd66fe 100644 --- a/packer/proxmox/ubuntu-server-focal/ubuntu-server-focal.pkr.hcl +++ b/packer/proxmox/ubuntu-server-focal/ubuntu-server-focal.pkr.hcl @@ -53,7 +53,7 @@ source "proxmox" "ubuntu-server-focal" { format = "qcow2" storage_pool = "local-lvm" storage_pool_type = "lvm" - type = "sata" + type = "virtio" } # VM CPU Settings diff --git a/packer/proxmox/ubuntu-server-jammy-docker/files/99-pve.cfg b/packer/proxmox/ubuntu-server-jammy-docker/files/99-pve.cfg new file mode 100644 index 0000000..a78672c --- /dev/null +++ b/packer/proxmox/ubuntu-server-jammy-docker/files/99-pve.cfg @@ -0,0 +1 @@ +datasource_list: [ConfigDrive, NoCloud] \ No newline at end of file diff --git a/packer/proxmox/ubuntu-server-jammy-docker/http/meta-data b/packer/proxmox/ubuntu-server-jammy-docker/http/meta-data new file mode 100644 index 0000000..e69de29 diff --git a/packer/proxmox/ubuntu-server-jammy-docker/http/user-data b/packer/proxmox/ubuntu-server-jammy-docker/http/user-data new file mode 100644 index 0000000..de3248e --- /dev/null +++ b/packer/proxmox/ubuntu-server-jammy-docker/http/user-data @@ -0,0 +1,33 @@ +#cloud-config +autoinstall: + version: 1 + locale: en_US + keyboard: + layout: de + ssh: + install-server: true + allow-pw: true + disable_root: true + ssh_quiet_keygen: true + allow_public_ssh_keys: true + packages: + - qemu-guest-agent + - sudo + storage: + layout: + name: direct + swap: + size: 0 + user-data: + package_upgrade: false + timezone: Europe/Berlin + users: + - name: your-user-name + groups: [adm, sudo] + lock-passwd: false + sudo: ALL=(ALL) NOPASSWD:ALL + shell: /bin/bash + # passwd: your-password + # - or - + # ssh_authorized_keys: + # - your-ssh-key diff --git a/packer/proxmox/ubuntu-server-jammy-docker/ubuntu-server-jammy-docker.pkr.hcl b/packer/proxmox/ubuntu-server-jammy-docker/ubuntu-server-jammy-docker.pkr.hcl new file mode 100644 index 0000000..0329aea --- /dev/null +++ b/packer/proxmox/ubuntu-server-jammy-docker/ubuntu-server-jammy-docker.pkr.hcl @@ -0,0 +1,149 @@ +# Ubuntu Server jammy +# --- +# Packer Template to create an Ubuntu Server (jammy) on Proxmox + +# Variable Definitions +variable "proxmox_api_url" { + type = string +} + +variable "proxmox_api_token_id" { + type = string +} + +variable "proxmox_api_token_secret" { + type = string + sensitive = true +} + +# Resource Definiation for the VM Template +source "proxmox" "ubuntu-server-jammy" { + + # 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 = "your-proxmox-node" + vm_id = "100" + vm_name = "ubuntu-server-jammy" + template_description = "Ubuntu Server jammy Image" + + # VM OS Settings + # (Option 1) Local ISO File + # iso_file = "local:iso/ubuntu-22.04-live-server-amd64.iso" + # - or - + # (Option 2) Download ISO + # iso_url = "https://releases.ubuntu.com/22.04/ubuntu-22.04-live-server-amd64.iso" + # iso_checksum = "84aeaf7823c8c61baa0ae862d0a06b03409394800000b3235854a6b38eb4856f" + iso_storage_pool = "local" + unmount_iso = true + + # VM System Settings + qemu_agent = true + + # VM Hard Disk Settings + scsi_controller = "virtio-scsi-pci" + + disks { + disk_size = "20G" + format = "qcow2" + storage_pool = "local-lvm" + storage_pool_type = "lvm" + type = "virtio" + } + + # VM CPU Settings + cores = "1" + + # 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 = "local-lvm" + + # PACKER Boot Commands + boot_command = [ + "", + "e", + "", + "", + "autoinstall ds=nocloud-net\\;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ ---", + "" + ] + boot = "c" + boot_wait = "5s" + + # PACKER Autoinstall Settings + http_directory = "http" + # (Optional) Bind IP Address and Port + # http_bind_address = "0.0.0.0" + # http_port_min = 8802 + # http_port_max = 8802 + + ssh_username = "your-user-name" + + # (Option 1) Add your Password here + # ssh_password = "your-password" + # - or - + # (Option 2) Add your Private SSH KEY file here + # ssh_private_key_file = "~/.ssh/id_rsa" + + # Raise the timeout, when installation takes longer + ssh_timeout = "20m" +} + +# Build Definition to create the VM Template +build { + + name = "ubuntu-server-jammy" + sources = ["source.proxmox.ubuntu-server-jammy"] + + # Provisioning the VM Template for Cloud-Init Integration in Proxmox #1 + provisioner "shell" { + inline = [ + "while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo 'Waiting for cloud-init...'; sleep 1; done", + "sudo rm /etc/ssh/ssh_host_*", + "sudo truncate -s 0 /etc/machine-id", + "sudo apt -y autoremove --purge", + "sudo apt -y clean", + "sudo apt -y autoclean", + "sudo cloud-init clean", + "sudo rm -f /etc/cloud/cloud.cfg.d/subiquity-disable-cloudinit-networking.cfg", + "sudo sync" + ] + } + + # 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" ] + } + + # Provisioning the VM Template with Docker Installation #4 + provisioner "shell" { + inline = [ + "sudo apt-get install -y ca-certificates curl gnupg lsb-release", + "curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg", + "echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable\" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null", + "sudo apt-get -y update", + "sudo apt-get install -y docker-ce docker-ce-cli containerd.io" + ] + } +} diff --git a/packer/proxmox/ubuntu-server-jammy/files/99-pve.cfg b/packer/proxmox/ubuntu-server-jammy/files/99-pve.cfg new file mode 100644 index 0000000..a78672c --- /dev/null +++ b/packer/proxmox/ubuntu-server-jammy/files/99-pve.cfg @@ -0,0 +1 @@ +datasource_list: [ConfigDrive, NoCloud] \ No newline at end of file diff --git a/packer/proxmox/ubuntu-server-jammy/http/meta-data b/packer/proxmox/ubuntu-server-jammy/http/meta-data new file mode 100644 index 0000000..e69de29 diff --git a/packer/proxmox/ubuntu-server-jammy/http/user-data b/packer/proxmox/ubuntu-server-jammy/http/user-data new file mode 100644 index 0000000..de3248e --- /dev/null +++ b/packer/proxmox/ubuntu-server-jammy/http/user-data @@ -0,0 +1,33 @@ +#cloud-config +autoinstall: + version: 1 + locale: en_US + keyboard: + layout: de + ssh: + install-server: true + allow-pw: true + disable_root: true + ssh_quiet_keygen: true + allow_public_ssh_keys: true + packages: + - qemu-guest-agent + - sudo + storage: + layout: + name: direct + swap: + size: 0 + user-data: + package_upgrade: false + timezone: Europe/Berlin + users: + - name: your-user-name + groups: [adm, sudo] + lock-passwd: false + sudo: ALL=(ALL) NOPASSWD:ALL + shell: /bin/bash + # passwd: your-password + # - or - + # ssh_authorized_keys: + # - your-ssh-key diff --git a/packer/proxmox/ubuntu-server-jammy/ubuntu-server-jammy.pkr.hcl b/packer/proxmox/ubuntu-server-jammy/ubuntu-server-jammy.pkr.hcl new file mode 100644 index 0000000..8fb9c43 --- /dev/null +++ b/packer/proxmox/ubuntu-server-jammy/ubuntu-server-jammy.pkr.hcl @@ -0,0 +1,141 @@ +# Ubuntu Server jammy +# --- +# Packer Template to create an Ubuntu Server (jammy) on Proxmox + +# Variable Definitions +variable "proxmox_api_url" { + type = string +} + +variable "proxmox_api_token_id" { + type = string +} + +variable "proxmox_api_token_secret" { + type = string + sensitive = true +} + +# Resource Definiation for the VM Template +source "proxmox" "ubuntu-server-jammy" { + + # 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 = "your-proxmox-node" + vm_id = "100" + vm_name = "ubuntu-server-jammy" + template_description = "Ubuntu Server jammy Image" + + # VM OS Settings + # (Option 1) Local ISO File + # iso_file = "local:iso/ubuntu-22.04-live-server-amd64.iso" + # - or - + # (Option 2) Download ISO + # iso_url = "https://releases.ubuntu.com/22.04/ubuntu-22.04-live-server-amd64.iso" + # iso_checksum = "84aeaf7823c8c61baa0ae862d0a06b03409394800000b3235854a6b38eb4856f" + iso_storage_pool = "local" + unmount_iso = true + + # VM System Settings + qemu_agent = true + + # VM Hard Disk Settings + scsi_controller = "virtio-scsi-pci" + + disks { + disk_size = "20G" + format = "qcow2" + storage_pool = "local-lvm" + storage_pool_type = "lvm" + type = "virtio" + } + + # VM CPU Settings + cores = "1" + + # 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 = "local-lvm" + + # PACKER Boot Commands + boot_command = [ + "", + "e", + "", + "", + "autoinstall ds=nocloud-net\\;s=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ ---", + "" + ] + boot = "c" + boot_wait = "5s" + + # PACKER Autoinstall Settings + http_directory = "http" + # (Optional) Bind IP Address and Port + # http_bind_address = "0.0.0.0" + # http_port_min = 8802 + # http_port_max = 8802 + + ssh_username = "your-user-name" + + # (Option 1) Add your Password here + # ssh_password = "your-password" + # - or - + # (Option 2) Add your Private SSH KEY file here + # ssh_private_key_file = "~/.ssh/id_rsa" + + # Raise the timeout, when installation takes longer + ssh_timeout = "20m" +} + +# Build Definition to create the VM Template +build { + + name = "ubuntu-server-jammy" + sources = ["source.proxmox.ubuntu-server-jammy"] + + # Provisioning the VM Template for Cloud-Init Integration in Proxmox #1 + provisioner "shell" { + inline = [ + "while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo 'Waiting for cloud-init...'; sleep 1; done", + "sudo rm /etc/ssh/ssh_host_*", + "sudo truncate -s 0 /etc/machine-id", + "sudo apt -y autoremove --purge", + "sudo apt -y clean", + "sudo apt -y autoclean", + "sudo cloud-init clean", + "sudo rm -f /etc/cloud/cloud.cfg.d/subiquity-disable-cloudinit-networking.cfg", + "sudo sync" + ] + } + + # 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 + # ... +}