From 6b3cec237cc85b463cf47d6853c5096a9cc9daa2 Mon Sep 17 00:00:00 2001 From: greysoh Date: Tue, 16 Jul 2024 01:01:47 -0400 Subject: [PATCH] chore: Increase disk sizes. --- nixinfra/commons.agent.nix | 2 ++ nixinfra/commons.server.nix | 4 +++- nixinfra/kitteh-node-1/server.nix | 4 +++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/nixinfra/commons.agent.nix b/nixinfra/commons.agent.nix index 612b959..6b3cf03 100644 --- a/nixinfra/commons.agent.nix +++ b/nixinfra/commons.agent.nix @@ -5,6 +5,8 @@ in { ./commons.nix ]; + # This is intentionally defined like this (not using braces) for updating. DO NOT CHANGE THIS. + # - greysoh proxmox.qemuConf.memory = 8192; proxmox.qemuConf.cores = 4; proxmox.qemuConf.name = "k3s-agent"; diff --git a/nixinfra/commons.server.nix b/nixinfra/commons.server.nix index a9eb049..ff13826 100644 --- a/nixinfra/commons.server.nix +++ b/nixinfra/commons.server.nix @@ -5,10 +5,12 @@ in { ./commons.nix ]; + # This is intentionally defined like this (not using braces) for updating. DO NOT CHANGE THIS. + # - greysoh proxmox.qemuConf.memory = 4096; proxmox.qemuConf.cores = 1; proxmox.qemuConf.name = "k3s-server"; - proxmox.qemuConf.diskSize = pkgs.lib.mkForce "16384"; + proxmox.qemuConf.diskSize = pkgs.lib.mkForce "32768"; services.k3s = { role = "server"; diff --git a/nixinfra/kitteh-node-1/server.nix b/nixinfra/kitteh-node-1/server.nix index 631da1b..34de488 100644 --- a/nixinfra/kitteh-node-1/server.nix +++ b/nixinfra/kitteh-node-1/server.nix @@ -8,10 +8,12 @@ in { ../commons.nix ]; + # This is intentionally defined like this (not using braces) for updating. DO NOT CHANGE THIS. + # - greysoh proxmox.qemuConf.memory = 4096; proxmox.qemuConf.cores = 1; proxmox.qemuConf.name = "k3s-server"; - proxmox.qemuConf.diskSize = pkgs.lib.mkForce "16384"; + proxmox.qemuConf.diskSize = pkgs.lib.mkForce "32768"; networking.hostName = "kitteh-node-1-k3s-server";