chore: Increase disk sizes.

This commit is contained in:
greysoh 2024-07-16 01:01:47 -04:00
parent 8abe8541df
commit 6b3cec237c
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
3 changed files with 8 additions and 2 deletions

View file

@ -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";

View file

@ -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";

View file

@ -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";