adding nexus and fixing tags
This commit is contained in:
parent
7ed88bf1ef
commit
c8583d69ee
5 changed files with 68 additions and 5 deletions
|
@ -5,7 +5,7 @@ resource "proxmox_virtual_environment_vm" "Arrbuntu" {
|
|||
vm_id = 200
|
||||
name = "arrbuntu"
|
||||
description = "arrbuntu"
|
||||
tags = ["tofu", "ubuntu-22, auto-homelab-repo, infrastructure"]
|
||||
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
|
||||
|
||||
agent {
|
||||
enabled = true # read 'Qemu guest agent' section, change to true only when ready
|
||||
|
|
|
@ -5,10 +5,10 @@ resource "proxmox_virtual_environment_vm" "Downloaders" {
|
|||
vm_id = 201
|
||||
name = "Downloaders"
|
||||
description = "Sab, Qbitty"
|
||||
tags = ["tofu", "ubuntu-22, auto-homelab-repo, infrastructure"]
|
||||
tags = ["tofu", "ubuntu-22", "auto-homelab-repo", "infrastructure"]
|
||||
|
||||
agent {
|
||||
enabled = false # read 'Qemu guest agent' section, change to true only when ready
|
||||
enabled = true # read 'Qemu guest agent' section, change to true only when ready
|
||||
}
|
||||
|
||||
clone {
|
||||
|
|
63
nexus.tf
Normal file
63
nexus.tf
Normal file
|
@ -0,0 +1,63 @@
|
|||
resource "proxmox_virtual_environment_vm" "Nexus" {
|
||||
|
||||
# VM General Settings
|
||||
node_name = "prox"
|
||||
vm_id = 205
|
||||
name = "Nexus"
|
||||
description = "Docker Registry to limit DockerHub pulls"
|
||||
tags = ["tofu", "ubuntu24", "auto-homelab-repo", "infrastructure"]
|
||||
|
||||
agent {
|
||||
enabled = true # read 'Qemu guest agent' section, change to true only when ready
|
||||
}
|
||||
|
||||
clone {
|
||||
vm_id = 8002
|
||||
}
|
||||
|
||||
# VM CPU Settings
|
||||
cpu {
|
||||
cores = 4
|
||||
type = "host"
|
||||
}
|
||||
|
||||
# VM Memory Settings
|
||||
memory {
|
||||
dedicated = 4096
|
||||
}
|
||||
|
||||
# VM Network Settings
|
||||
network_device {
|
||||
bridge = "vmbr0"
|
||||
}
|
||||
|
||||
# VM Disk Settings
|
||||
disk {
|
||||
datastore_id = "Fast2Tb"
|
||||
size = 120
|
||||
interface = "scsi0"
|
||||
}
|
||||
|
||||
vga {
|
||||
type = "serial0"
|
||||
}
|
||||
|
||||
initialization {
|
||||
ip_config {
|
||||
ipv4 {
|
||||
address = "dhcp"
|
||||
}
|
||||
}
|
||||
|
||||
user_account {}
|
||||
}
|
||||
|
||||
lifecycle {
|
||||
ignore_changes = [
|
||||
initialization[0].user_account[0].keys,
|
||||
initialization[0].user_account[0].password,
|
||||
initialization[0].user_account[0].username,
|
||||
]
|
||||
}
|
||||
|
||||
}
|
2
npm.tf
2
npm.tf
|
@ -5,7 +5,7 @@ resource "proxmox_virtual_environment_vm" "NPM" {
|
|||
vm_id = 204
|
||||
name = "Nginx-Proxy-Manager"
|
||||
description = "Nginx Proxy Manager"
|
||||
tags = ["tofu", "ubuntu24, auto-homelab-repo, infrastructure"]
|
||||
tags = ["tofu", "ubuntu24", "auto-homelab-repo", "infrastructure"]
|
||||
|
||||
agent {
|
||||
enabled = true # read 'Qemu guest agent' section, change to true only when ready
|
||||
|
|
|
@ -6,7 +6,7 @@ resource "proxmox_virtual_environment_vm" "Whisper" {
|
|||
name = "Whisper"
|
||||
machine = "q35"
|
||||
description = "Creates subtitles for Bazarr and stable-diffusion"
|
||||
tags = ["tofu", "ubuntu-22, auto-homelab-repo"]
|
||||
tags = ["tofu", "ubuntu-22", "auto-homelab-repo"]
|
||||
|
||||
agent {
|
||||
enabled = true # read 'Qemu guest agent' section, change to true only when ready
|
||||
|
|
Reference in a new issue