We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 980f9eb commit 01404edCopy full SHA for 01404ed
pkg/minimal/limits.go
@@ -15,10 +15,10 @@ import (
15
16
// Memory returns the minimal/recommended amount of memory required to run the node.
17
func Memory(typ machine.Type) (minimum, recommended uint64, err error) {
18
- // We remove 100 MiB from the recommended memory to account for the kernel
+ // We remove 150 MiB from the recommended memory to account for the kernel
19
switch typ { //nolint:exhaustive
20
case machine.TypeControlPlane, machine.TypeInit:
21
- minimum = 2*humanize.GiByte - 150*humanize.MiByte
+ minimum = 1848*humanize.MiByte - 150*humanize.MiByte
22
recommended = 4*humanize.GiByte - 150*humanize.MiByte
23
24
case machine.TypeWorker:
0 commit comments