summary refs log tree commit diff
path: root/nixos/modules/services/cluster
diff options
context:
space:
mode:
authorKevin Liu <kevin@potatofrom.space>2018-05-21 21:07:24 -0400
committerGitHub <noreply@github.com>2018-05-21 21:07:24 -0400
commitb6f2e75d75a0bd53bb207b7b1b210881c73c9e59 (patch)
tree25f242cd131f3b5f3e0d2afa84ffb1f78ffaee27 /nixos/modules/services/cluster
parented8267495423052600abc1bb4865be7fc9921f48 (diff)
downloadnixlib-b6f2e75d75a0bd53bb207b7b1b210881c73c9e59.tar
nixlib-b6f2e75d75a0bd53bb207b7b1b210881c73c9e59.tar.gz
nixlib-b6f2e75d75a0bd53bb207b7b1b210881c73c9e59.tar.bz2
nixlib-b6f2e75d75a0bd53bb207b7b1b210881c73c9e59.tar.lz
nixlib-b6f2e75d75a0bd53bb207b7b1b210881c73c9e59.tar.xz
nixlib-b6f2e75d75a0bd53bb207b7b1b210881c73c9e59.tar.zst
nixlib-b6f2e75d75a0bd53bb207b7b1b210881c73c9e59.zip
kubernetes-dashboard: raise memory limit to 250MB
On my cluster, I often get OOM errors that cause the dashboard to crash just by going over 50MB.
Diffstat (limited to 'nixos/modules/services/cluster')
-rw-r--r--nixos/modules/services/cluster/kubernetes/dashboard.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/cluster/kubernetes/dashboard.nix b/nixos/modules/services/cluster/kubernetes/dashboard.nix
index e331889b9dd5..d27389b6a1c7 100644
--- a/nixos/modules/services/cluster/kubernetes/dashboard.nix
+++ b/nixos/modules/services/cluster/kubernetes/dashboard.nix
@@ -70,7 +70,7 @@ in {
                 resources = {
                   limits = {
                     cpu = "100m";
-                    memory = "50Mi";
+                    memory = "250Mi";
                   };
                   requests = {
                     cpu = "100m";