chore: Increase disk sizes.
This commit is contained in:
parent
8abe8541df
commit
6b3cec237c
3 changed files with 8 additions and 2 deletions
|
@ -5,6 +5,8 @@ in {
|
||||||
./commons.nix
|
./commons.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# This is intentionally defined like this (not using braces) for updating. DO NOT CHANGE THIS.
|
||||||
|
# - greysoh
|
||||||
proxmox.qemuConf.memory = 8192;
|
proxmox.qemuConf.memory = 8192;
|
||||||
proxmox.qemuConf.cores = 4;
|
proxmox.qemuConf.cores = 4;
|
||||||
proxmox.qemuConf.name = "k3s-agent";
|
proxmox.qemuConf.name = "k3s-agent";
|
||||||
|
|
|
@ -5,10 +5,12 @@ in {
|
||||||
./commons.nix
|
./commons.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# This is intentionally defined like this (not using braces) for updating. DO NOT CHANGE THIS.
|
||||||
|
# - greysoh
|
||||||
proxmox.qemuConf.memory = 4096;
|
proxmox.qemuConf.memory = 4096;
|
||||||
proxmox.qemuConf.cores = 1;
|
proxmox.qemuConf.cores = 1;
|
||||||
proxmox.qemuConf.name = "k3s-server";
|
proxmox.qemuConf.name = "k3s-server";
|
||||||
proxmox.qemuConf.diskSize = pkgs.lib.mkForce "16384";
|
proxmox.qemuConf.diskSize = pkgs.lib.mkForce "32768";
|
||||||
|
|
||||||
services.k3s = {
|
services.k3s = {
|
||||||
role = "server";
|
role = "server";
|
||||||
|
|
|
@ -8,10 +8,12 @@ in {
|
||||||
../commons.nix
|
../commons.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# This is intentionally defined like this (not using braces) for updating. DO NOT CHANGE THIS.
|
||||||
|
# - greysoh
|
||||||
proxmox.qemuConf.memory = 4096;
|
proxmox.qemuConf.memory = 4096;
|
||||||
proxmox.qemuConf.cores = 1;
|
proxmox.qemuConf.cores = 1;
|
||||||
proxmox.qemuConf.name = "k3s-server";
|
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";
|
networking.hostName = "kitteh-node-1-k3s-server";
|
||||||
|
|
||||||
|
|
Reference in a new issue