Skip to content

Commit bfe0a0a

Browse files
committed
Update memory requirement from 8GB to 9GB
With the 4.4 release, it is impossible to run the cluster in a sane way using 8GiB of memory. In OpenShift 4.4, the required system memory for the kubelet systemd service was raised from 500MiB to 1GiB. Also, the memory requested by some operators has increased compared to 4.3.
1 parent 0939f71 commit bfe0a0a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/source/topics/proc_configuring-the-virtual-machine.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ Values for available memory are set in mebibytes (MiB).
4848
One gibibyte (GiB) of memory is equal to 1024 MiB.
4949
====
5050
+
51-
The default value for the `memory` property is `8192`.
51+
The default value for the `memory` property is `9216`.
5252
The amount of memory to assign must be greater than or equal to the default.

pkg/crc/constants/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
const (
1313
DefaultName = "crc"
1414
DefaultCPUs = 4
15-
DefaultMemory = 8192
15+
DefaultMemory = 9216
1616

1717
DefaultSSHPort = 22
1818
DefaultSSHUser = "core"

test/integration/features/config.feature

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ Checks whether CRC `config set` command works as expected in conjunction with `c
1717
Examples: Config settings on Mac
1818
| property | value1 | value2 |
1919
| cpus | 4 | 3 |
20-
| memory | 8192 | 4096 |
20+
| memory | 9216 | 4096 |
2121
| nameserver | 120.0.0.1 | 999.999.999.999 |
2222
| pull-secret-file | /etc | /nonexistent-file |
2323

2424
@linux
2525
Examples: Config settings on Linux
2626
| property | value1 | value2 |
2727
| cpus | 4 | 3 |
28-
| memory | 8192 | 4096 |
28+
| memory | 9216 | 4096 |
2929
| nameserver | 120.0.0.1 | 999.999.999.999 |
3030
| pull-secret-file | /etc | /nonexistent-file |
3131

3232
@windows
3333
Examples: Config settings on Windows
3434
| property | value1 | value2 |
3535
| cpus | 4 | 3 |
36-
| memory | 8192 | 4096 |
36+
| memory | 9216 | 4096 |
3737
| nameserver | 120.0.0.1 | 999.999.999.999 |
3838
| pull-secret-file | /Users | /nonexistent-file |
3939

0 commit comments

Comments
 (0)