From b4050b3123aa32281c1f845150a7a54d23087981 Mon Sep 17 00:00:00 2001 From: Victoria Martinez de la Cruz Date: Tue, 18 Jun 2024 16:17:33 +0200 Subject: [PATCH] Lower ElasticSearch memory requirements (#605) Lower ES memory reqs so we don't exhaust resources in CI environments. This is reproducible in OCP 4.12 jobs. --- build/stf-run-ci/templates/manifest_elasticsearch.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/stf-run-ci/templates/manifest_elasticsearch.j2 b/build/stf-run-ci/templates/manifest_elasticsearch.j2 index 0a59a046..ebd0dc9d 100644 --- a/build/stf-run-ci/templates/manifest_elasticsearch.j2 +++ b/build/stf-run-ci/templates/manifest_elasticsearch.j2 @@ -33,10 +33,10 @@ spec: resources: limits: cpu: "2" - memory: 4Gi + memory: 2Gi requests: cpu: "1" - memory: 4Gi + memory: 2Gi volumes: - emptyDir: {} name: elasticsearch-data