Skip to content

Commit 85f2510

Browse files
committed
This lowers the minimum resources that a container must run with.
Some containers in the RHOAI application run with 64Mi of memory. The original reason we set these minimum is to prevent people from running containers without any cpu or memory request.
1 parent d08dbd9 commit 85f2510

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coldfront_plugin_cloud/openshift.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"type": "Container",
3838
"default": {"cpu": "1", "memory": "4096Mi", "nvidia.com/gpu": "0"},
3939
"defaultRequest": {"cpu": "500m", "memory": "2048Mi", "nvidia.com/gpu": "0"},
40-
"min": {"cpu": "125m", "memory": "256Mi"},
40+
"min": {"cpu": "25m", "memory": "32Mi"},
4141
}
4242
]
4343

0 commit comments

Comments
 (0)