From b50b776cb550dd91a9c47a7cd7295cb0f2d8dd4f Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 12 Mar 2025 14:21:43 -0700 Subject: [PATCH] varnish / s390x cache: move to memory based instead of disk This was done last week to help out with builds that were failing due to s390x cache issues. Moving to memory based seems to have helped this stop happening, possibly along with other changes. I'm pushing it now because it reflects the current state after outages last week. Signed-off-by: Kevin Fenzi --- roles/varnish/templates/varnish.f29.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/varnish/templates/varnish.f29.j2 b/roles/varnish/templates/varnish.f29.j2 index d55c999ccd..7f9461d0b3 100644 --- a/roles/varnish/templates/varnish.f29.j2 +++ b/roles/varnish/templates/varnish.f29.j2 @@ -7,7 +7,7 @@ {% if varnish_group == 'kojipkgs' %} {% set VARNISH_STORAGE="malloc,48GB" %} {% elif varnish_group == 's390kojipkgs' %} -{% set VARNISH_STORAGE="file,/var/lib/varnish/varnish_storage.bin,20G" %} +{% set VARNISH_STORAGE="malloc,20G" %} {% elif varnish_group == 'proxies' %} {% set VARNISH_STORAGE="malloc,1GB -s Transient=malloc,2G" %} {% else %}