testing
This commit is contained in:
parent
e45732b1f1
commit
a7ac8d678c
6 changed files with 86 additions and 125 deletions
7
docker/scripts/kasm.sh
Normal file
7
docker/scripts/kasm.sh
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Navigate to the directory
|
||||||
|
cd /home/mafyuh/iac/docker/kasm
|
||||||
|
|
||||||
|
# Run the command
|
||||||
|
dcu
|
|
@ -31,10 +31,13 @@ source "proxmox-clone" "ubuntu-server-jammy" {
|
||||||
|
|
||||||
# VM General Settings
|
# VM General Settings
|
||||||
node = "pve2"
|
node = "pve2"
|
||||||
|
|
||||||
|
## See https://git.mafyuh.dev/mafyuh/iac/src/branch/main/terraform/ubuntu22-template2.tf
|
||||||
clone_vm_id = "8101"
|
clone_vm_id = "8101"
|
||||||
vm_id = "9636"
|
|
||||||
|
vm_id = "9999"
|
||||||
vm_name = "ubuntu-server-jammy"
|
vm_name = "ubuntu-server-jammy"
|
||||||
template_description = "Ubuntu Server jammy Image"
|
template_description = "Custom Ubuntu Server see https://git.mafyuh.dev/mafyuh/iac/src/branch/main/packer/ubuntu-jammy/ubuntu-jammy.pkr.hcl"
|
||||||
|
|
||||||
# VM System Settings
|
# VM System Settings
|
||||||
qemu_agent = true
|
qemu_agent = true
|
||||||
|
@ -43,7 +46,7 @@ source "proxmox-clone" "ubuntu-server-jammy" {
|
||||||
scsi_controller = "virtio-scsi-pci"
|
scsi_controller = "virtio-scsi-pci"
|
||||||
|
|
||||||
disks {
|
disks {
|
||||||
disk_size = "5G"
|
disk_size = "4G"
|
||||||
format = "raw"
|
format = "raw"
|
||||||
storage_pool = "Fast500Gb"
|
storage_pool = "Fast500Gb"
|
||||||
type = "virtio"
|
type = "virtio"
|
||||||
|
@ -65,6 +68,7 @@ source "proxmox-clone" "ubuntu-server-jammy" {
|
||||||
|
|
||||||
|
|
||||||
ssh_username = "mafyuh"
|
ssh_username = "mafyuh"
|
||||||
|
# WSL Filesystem
|
||||||
ssh_private_key_file = "~/.ssh/id_rsa"
|
ssh_private_key_file = "~/.ssh/id_rsa"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -74,7 +78,7 @@ build {
|
||||||
name = "ubuntu-server-jammy"
|
name = "ubuntu-server-jammy"
|
||||||
sources = ["source.proxmox-clone.ubuntu-server-jammy"]
|
sources = ["source.proxmox-clone.ubuntu-server-jammy"]
|
||||||
|
|
||||||
|
## Cleanup for re-template
|
||||||
provisioner "shell" {
|
provisioner "shell" {
|
||||||
inline = [
|
inline = [
|
||||||
"while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo 'Waiting for cloud-init...'; sleep 1; done",
|
"while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo 'Waiting for cloud-init...'; sleep 1; done",
|
||||||
|
@ -101,7 +105,7 @@ build {
|
||||||
inline = [ "sudo cp /tmp/pve.cfg /etc/cloud/cloud.cfg.d/pve.cfg" ]
|
inline = [ "sudo cp /tmp/pve.cfg /etc/cloud/cloud.cfg.d/pve.cfg" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
# Provisioning the VM Template with Docker Installation #4
|
# Install Commonly Used Things - add alias's - set git config
|
||||||
provisioner "shell" {
|
provisioner "shell" {
|
||||||
inline = [
|
inline = [
|
||||||
"sudo apt-get install -y ca-certificates curl gnupg lsb-release nfs-common qemu-guest-agent net-tools",
|
"sudo apt-get install -y ca-certificates curl gnupg lsb-release nfs-common qemu-guest-agent net-tools",
|
||||||
|
|
|
@ -63,7 +63,6 @@ resource "proxmox_virtual_environment_file" "cloud_config2" {
|
||||||
sudo: ALL=(ALL) NOPASSWD:ALL
|
sudo: ALL=(ALL) NOPASSWD:ALL
|
||||||
runcmd:
|
runcmd:
|
||||||
- apt update
|
- apt update
|
||||||
- apt install -y qemu-guest-agent
|
|
||||||
- timedatectl set-timezone America/New_York
|
- timedatectl set-timezone America/New_York
|
||||||
- systemctl enable qemu-guest-agent
|
- systemctl enable qemu-guest-agent
|
||||||
- systemctl start qemu-guest-agent
|
- systemctl start qemu-guest-agent
|
||||||
|
|
|
@ -1,64 +1,74 @@
|
||||||
resource "proxmox_virtual_environment_vm" "Kasm" {
|
resource "proxmox_virtual_environment_vm" "Kasm" {
|
||||||
|
# VM General Settings
|
||||||
|
node_name = "pve2"
|
||||||
|
vm_id = 333
|
||||||
|
name = "Kasm"
|
||||||
|
description = "kasm"
|
||||||
|
tags = ["tofu", "ubuntu-22", "iac-repo"]
|
||||||
|
started = true
|
||||||
|
|
||||||
# VM General Settings
|
agent {
|
||||||
node_name = "pve2"
|
enabled = true
|
||||||
vm_id = 333
|
}
|
||||||
name = "Kasm"
|
|
||||||
description = "kasm"
|
|
||||||
tags = ["tofu", "ubuntu-22", "iac-repo"]
|
|
||||||
started = true
|
|
||||||
|
|
||||||
agent {
|
clone {
|
||||||
enabled = true
|
vm_id = 9999
|
||||||
|
}
|
||||||
|
|
||||||
|
# VM CPU Settings
|
||||||
|
cpu {
|
||||||
|
cores = 4
|
||||||
|
type = "host"
|
||||||
|
architecture = "x86_64"
|
||||||
|
}
|
||||||
|
|
||||||
|
# VM Memory Settings
|
||||||
|
memory {
|
||||||
|
dedicated = 4096
|
||||||
|
}
|
||||||
|
|
||||||
|
# VM Network Settings
|
||||||
|
network_device {
|
||||||
|
bridge = "vmbr0"
|
||||||
|
vlan_id = 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# VM Disk Settings
|
||||||
|
disk {
|
||||||
|
datastore_id = "local-lvm"
|
||||||
|
size = 100
|
||||||
|
interface = "scsi0"
|
||||||
|
}
|
||||||
|
|
||||||
|
initialization {
|
||||||
|
ip_config {
|
||||||
|
ipv4 {
|
||||||
|
address = var.kasm_ip
|
||||||
|
gateway = var.vlan_gateway
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
clone {
|
user_data_file_id = proxmox_virtual_environment_file.cloud_config2.id
|
||||||
vm_id = 8101
|
}
|
||||||
}
|
|
||||||
|
|
||||||
# VM CPU Settings
|
|
||||||
cpu {
|
|
||||||
cores = 4
|
|
||||||
type = "host"
|
|
||||||
architecture = "x86_64"
|
|
||||||
}
|
|
||||||
|
|
||||||
# VM Memory Settings
|
|
||||||
memory {
|
|
||||||
dedicated = 4096
|
|
||||||
}
|
|
||||||
|
|
||||||
# VM Network Settings
|
lifecycle {
|
||||||
network_device {
|
ignore_changes = [
|
||||||
bridge = "vmbr0"
|
initialization[0].user_account[0].keys,
|
||||||
vlan_id = 1
|
initialization[0].user_account[0].password,
|
||||||
}
|
initialization[0].user_account[0].username,
|
||||||
|
initialization[0].user_data_file_id
|
||||||
# VM Disk Settings
|
]
|
||||||
disk {
|
}
|
||||||
datastore_id = "local-lvm"
|
|
||||||
size = 100
|
|
||||||
interface = "scsi0"
|
|
||||||
}
|
|
||||||
|
|
||||||
initialization {
|
|
||||||
ip_config {
|
|
||||||
ipv4 {
|
|
||||||
address = var.kasm_ip
|
|
||||||
gateway = var.vlan_gateway
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
user_data_file_id = proxmox_virtual_environment_file.cloud_config2.id
|
|
||||||
}
|
|
||||||
|
|
||||||
lifecycle {
|
|
||||||
ignore_changes = [
|
|
||||||
initialization[0].user_account[0].keys,
|
|
||||||
initialization[0].user_account[0].password,
|
|
||||||
initialization[0].user_account[0].username,
|
|
||||||
initialization[0].user_data_file_id
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
|
provisioner "remote-exec" {
|
||||||
|
inline = [
|
||||||
|
"sudo bash /home/mafyuh/iac/docker/scripts/kasm.sh"
|
||||||
|
]
|
||||||
|
connection {
|
||||||
|
type = "ssh"
|
||||||
|
user = "mafyuh"
|
||||||
|
private_key = file("/home/mafyuh/.ssh/id_rsa")
|
||||||
|
host = var.kasm_ssh_ip
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
}
|
|
@ -1,63 +0,0 @@
|
||||||
resource "proxmox_virtual_environment_vm" "test" {
|
|
||||||
|
|
||||||
# VM General Settings
|
|
||||||
node_name = "pve2"
|
|
||||||
vm_id = 335
|
|
||||||
name = "test"
|
|
||||||
description = "test"
|
|
||||||
tags = ["tofu", "ubuntu-22", "iac-repo"]
|
|
||||||
started = true
|
|
||||||
|
|
||||||
agent {
|
|
||||||
enabled = true
|
|
||||||
}
|
|
||||||
|
|
||||||
clone {
|
|
||||||
vm_id = 9636
|
|
||||||
}
|
|
||||||
|
|
||||||
# VM CPU Settings
|
|
||||||
cpu {
|
|
||||||
cores = 4
|
|
||||||
type = "host"
|
|
||||||
architecture = "x86_64"
|
|
||||||
}
|
|
||||||
|
|
||||||
# VM Memory Settings
|
|
||||||
memory {
|
|
||||||
dedicated = 4096
|
|
||||||
}
|
|
||||||
|
|
||||||
# VM Network Settings
|
|
||||||
network_device {
|
|
||||||
bridge = "vmbr0"
|
|
||||||
vlan_id = 1
|
|
||||||
}
|
|
||||||
|
|
||||||
# VM Disk Settings
|
|
||||||
disk {
|
|
||||||
datastore_id = "Fast500Gb"
|
|
||||||
size = 10
|
|
||||||
interface = "scsi0"
|
|
||||||
}
|
|
||||||
|
|
||||||
initialization {
|
|
||||||
ip_config {
|
|
||||||
ipv4 {
|
|
||||||
address = "dhcp"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
user_data_file_id = proxmox_virtual_environment_file.cloud_config2.id
|
|
||||||
}
|
|
||||||
|
|
||||||
lifecycle {
|
|
||||||
ignore_changes = [
|
|
||||||
initialization[0].user_account[0].keys,
|
|
||||||
initialization[0].user_account[0].password,
|
|
||||||
initialization[0].user_account[0].username,
|
|
||||||
initialization[0].user_data_file_id
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -48,4 +48,8 @@ variable "init_password" {
|
||||||
|
|
||||||
variable "kasm_ip" {
|
variable "kasm_ip" {
|
||||||
type = string
|
type = string
|
||||||
|
}
|
||||||
|
|
||||||
|
variable "kasm_ssh_ip" {
|
||||||
|
type = string
|
||||||
}
|
}
|
Loading…
Reference in a new issue