aboutsummaryrefslogtreecommitdiff
path: root/opentofu/ubuntu-server-noble.tf
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-02-03 17:21:58 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-02-03 17:21:58 +0100
commit4e2703c52026009c34e8dcb8294b50881f9152f8 (patch)
treec125c5405bfadb2eb802b2b3c12486274815b293 /opentofu/ubuntu-server-noble.tf
parent6135497b6b4837cb8bd65bc093b48ef6a14fbf7d (diff)
opentofu: add kubespray submodule to deploy via ansible
Not working yet, getting : "msg": "Ansible must be between 2.16.4 and 2.17.0 exclusive - you have 2.17.5"
Diffstat (limited to 'opentofu/ubuntu-server-noble.tf')
-rw-r--r--opentofu/ubuntu-server-noble.tf57
1 files changed, 0 insertions, 57 deletions
diff --git a/opentofu/ubuntu-server-noble.tf b/opentofu/ubuntu-server-noble.tf
deleted file mode 100644
index fe64af9..0000000
--- a/opentofu/ubuntu-server-noble.tf
+++ /dev/null
@@ -1,57 +0,0 @@
-resource "proxmox_vm_qemu" "ubuntu_server_noble" {
-
- lifecycle {
- ignore_changes = [
- bootdisk,
- ]
- }
-
- name = "ubuntu-server-noble"
- desc = "Plain ubuntu server noble"
- agent = 1 # Qemu Guest Agent
- target_node = var.proxmox_node
- tags = "ubuntu"
-
- clone = var.ubuntu_server_noble_packer_image_name
- full_clone = true
-
- qemu_os = "other"
- cores = 2
- sockets = 1
- cpu_type = "host"
- memory = 4096
-
- scsihw = "virtio-scsi-pci"
- bootdisk = "scsi0"
-
- disks {
- ide {
- ide0 {
- cloudinit {
- storage = "local-lvm"
- }
- }
- }
- virtio {
- virtio0 {
- disk {
- storage = "local-lvm"
- size = "20G"
- iothread = true
- replicate = false
- }
- }
- }
- }
-
- network {
- id = 0
- model = "virtio"
- bridge = "vmbr0"
- }
-
- # Cloud-Init settings
- ipconfig0 = "ip=dhcp"
- ciuser = "mas"
- sshkeys = var.ssh_public_key
-}