From: halil.cakal Date: Fri, 7 Feb 2025 14:41:39 +0000 (+0000) Subject: Disallow docker-compose to use swap space X-Git-Tag: 3.6.1~20 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F72%2F140172%2F1;p=cps.git Disallow docker-compose to use swap space - if swap memory is active on any host, the docker-compose will add it on top of JVM process memory. This will exceed the total memory reservation of the container, eventually cause restart. - swap limit can not be lower than the total memory limit, thus given 3G. this will disallow docker-compose to use swap space Issue-ID: CPS-2628 Change-Id: I01bd4a1fd3f4e894fe8236bbc38cd7718fb0b6fb Signed-off-by: halil.cakal --- diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 2573e3280c..8e42bc58be 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -82,6 +82,7 @@ services: limits: cpus: '3' memory: 3G + memswap_limit: 3G nginx: container_name: ${NGINX_CONTAINER_NAME:-nginx-loadbalancer}