-
Notifications
You must be signed in to change notification settings - Fork 114
Fixed java-web-spring quotas to be able to run on OSIO #62
Fixed java-web-spring quotas to be able to run on OSIO #62
Conversation
6b972f4
to
3ff22cb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was able to generate an OOMKilled
for the java language server; it seems like the java limit could safely be increased by ~200Mi
and stay within quota, though, so that may fix it.
so upon investigation there are three constants consuming quota limits:
and the plugins defined in the devfile:
That leaves me 1259.71875MiB to work with. After redistribution this leaves me exactly 3899392 bytes to spare or 3.71875MiB . Java LSP peaked at 1258MiB |
Signed-off-by: Tibor Dancs <tdancs@redhat.com>
3ff22cb
to
2eb64a8
Compare
@@ -12,6 +12,7 @@ components: | |||
- | |||
type: chePlugin | |||
id: redhat/java/latest | |||
memoryLimit: 1512Mi |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could potentially be dropped, as the default used for redhat/java/latest
is 1500Mi
. However this would mean any increases to the plugin-registry default would break this devfile again.
What does this PR do?
This PR fixes the Java Springboot devfile memory quotas in order to be able to run the image on OSIO
What issues does this PR fix or reference?
Issue: https://github.com/redhat-developer/che-functional-tests/issues/556