test packer
This commit is contained in:
parent
fa834a38af
commit
81c3941634
5 changed files with 120 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -42,3 +42,5 @@ terraform.rc
|
||||||
## Kubernetes
|
## Kubernetes
|
||||||
/kubernetes/cluster/apps/staging
|
/kubernetes/cluster/apps/staging
|
||||||
|
|
||||||
|
## Packer
|
||||||
|
credentials.pkr.hcl
|
||||||
|
|
1
packer/ubuntu-noble/files/pve.cfg
Normal file
1
packer/ubuntu-noble/files/pve.cfg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
datasource_list: [ConfigDrive, NoCloud]
|
116
packer/ubuntu-noble/ubuntu-jammy.pkr.hcl
Normal file
116
packer/ubuntu-noble/ubuntu-jammy.pkr.hcl
Normal file
|
@ -0,0 +1,116 @@
|
||||||
|
packer {
|
||||||
|
required_plugins {
|
||||||
|
name = {
|
||||||
|
version = "~> 1"
|
||||||
|
source = "github.com/hashicorp/proxmox"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
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-clone" "ubuntu-server-jammy" {
|
||||||
|
|
||||||
|
# Proxmox Connection Settings
|
||||||
|
proxmox_url = "${var.proxmox_api_url}"
|
||||||
|
username = "${var.proxmox_api_token_id}"
|
||||||
|
token = "${var.proxmox_api_token_secret}"
|
||||||
|
insecure_skip_tls_verify = true
|
||||||
|
|
||||||
|
# VM General Settings
|
||||||
|
node = "prox"
|
||||||
|
clone_vm_id = "8101"
|
||||||
|
vm_id = "9636"
|
||||||
|
vm_name = "ubuntu-server-jammy"
|
||||||
|
template_description = "Ubuntu Server jammy Image"
|
||||||
|
|
||||||
|
# VM System Settings
|
||||||
|
qemu_agent = true
|
||||||
|
|
||||||
|
# VM Hard Disk Settings
|
||||||
|
scsi_controller = "virtio-scsi-pci"
|
||||||
|
|
||||||
|
disks {
|
||||||
|
disk_size = "5G"
|
||||||
|
format = "raw"
|
||||||
|
storage_pool = "Fast2Tb"
|
||||||
|
type = "virtio"
|
||||||
|
}
|
||||||
|
|
||||||
|
# VM CPU Settings
|
||||||
|
cores = "2"
|
||||||
|
cpu_type = "x86-64-v2-AES"
|
||||||
|
|
||||||
|
# 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"
|
||||||
|
|
||||||
|
ssh_username = "mafyuh"
|
||||||
|
ssh_private_key_file = "~/.ssh/id_rsa"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Build Definition to create the VM Template
|
||||||
|
build {
|
||||||
|
|
||||||
|
name = "ubuntu-server-jammy"
|
||||||
|
sources = ["source.proxmox-clone.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 rm -f /etc/netplan/00-installer-config.yaml",
|
||||||
|
"sudo sync"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
# Provisioning the VM Template for Cloud-Init Integration in Proxmox #2
|
||||||
|
provisioner "file" {
|
||||||
|
source = "ubuntu-noble/files/pve.cfg"
|
||||||
|
destination = "/tmp/pve.cfg"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Provisioning the VM Template for Cloud-Init Integration in Proxmox #3
|
||||||
|
provisioner "shell" {
|
||||||
|
inline = [ "sudo cp /tmp/pve.cfg /etc/cloud/cloud.cfg.d/pve.cfg" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
# Provisioning the VM Template with Docker Installation #4
|
||||||
|
provisioner "shell" {
|
||||||
|
inline = [
|
||||||
|
"sudo apt-get install -y ca-certificates curl gnupg lsb-release nfs-common qemu-guest-agent net-tools",
|
||||||
|
"curl -fsSL https://get.docker.com | sudo sh",
|
||||||
|
"echo \"alias dcu='docker compose up -d'\" >> ~/.bashrc",
|
||||||
|
"sudo apt-get -y update"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
|
@ -30,8 +30,6 @@ resource "proxmox_virtual_environment_file" "cloud_config" {
|
||||||
- su - mafyuh -c 'git clone https://git.mafyuh.dev/mafyuh/iac.git /home/mafyuh/iac'
|
- su - mafyuh -c 'git clone https://git.mafyuh.dev/mafyuh/iac.git /home/mafyuh/iac'
|
||||||
- su - mafyuh -c 'git config --global user.name "Mafyuh"'
|
- su - mafyuh -c 'git config --global user.name "Mafyuh"'
|
||||||
- su - mafyuh -c 'git config --global user.email "matt@mafyuh.com"'
|
- su - mafyuh -c 'git config --global user.email "matt@mafyuh.com"'
|
||||||
- su - mafyuh -c 'echo "alias dcu=\'docker compose up -d\'" >> /home/mafyuh/.bashrc
|
|
||||||
- su - mafyuh -c 'echo "alias dcd=\'docker compose down\'" >> /home/mafyuh/.bashrc
|
|
||||||
- echo "done" > /tmp/cloud-config.done
|
- echo "done" > /tmp/cloud-config.done
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
@ -67,8 +65,6 @@ resource "proxmox_virtual_environment_file" "cloud_config2" {
|
||||||
- su - mafyuh -c 'git clone https://git.mafyuh.dev/mafyuh/iac.git /home/mafyuh/iac'
|
- su - mafyuh -c 'git clone https://git.mafyuh.dev/mafyuh/iac.git /home/mafyuh/iac'
|
||||||
- su - mafyuh -c 'git config --global user.name "Mafyuh"'
|
- su - mafyuh -c 'git config --global user.name "Mafyuh"'
|
||||||
- su - mafyuh -c 'git config --global user.email "matt@mafyuh.com"'
|
- su - mafyuh -c 'git config --global user.email "matt@mafyuh.com"'
|
||||||
- su - mafyuh -c 'echo "alias dcu=\'docker compose up -d\'" >> /home/mafyuh/.bashrc
|
|
||||||
- su - mafyuh -c 'echo "alias dcd=\'docker compose down\'" >> /home/mafyuh/.bashrc
|
|
||||||
- echo "done" > /tmp/cloud-config.done
|
- echo "done" > /tmp/cloud-config.done
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ resource "proxmox_virtual_environment_vm" "Kasm" {
|
||||||
vm_id = 333
|
vm_id = 333
|
||||||
name = "Kasm"
|
name = "Kasm"
|
||||||
description = "kasm"
|
description = "kasm"
|
||||||
tags = ["tofu", "ubuntu-22", "auto-homelab-repo"]
|
tags = ["tofu", "ubuntu-22", "iac-repo"]
|
||||||
started = true
|
started = true
|
||||||
|
|
||||||
agent {
|
agent {
|
||||||
|
|
Loading…
Reference in a new issue