From 6902aae1c3949eb1202581c0e057f339a74c1351 Mon Sep 17 00:00:00 2001 From: nmburgan <13688219+nmburgan@users.noreply.github.com> Date: Tue, 10 Feb 2026 07:25:55 -0800 Subject: [PATCH] Use SLES 15.5 image In 15.6, SLES updated glibc. When we build against it, it prevents people still on 15.5 or older from using the agent. The 15.5 image used here is not advertised or updated, but is still available. Since glibc is backwards compatible, this should allow any version of SLES 15 to use the agent. --- lib/vanagon/platform/defaults/sles-15-x86_64.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vanagon/platform/defaults/sles-15-x86_64.rb b/lib/vanagon/platform/defaults/sles-15-x86_64.rb index 592414f4..2510634f 100644 --- a/lib/vanagon/platform/defaults/sles-15-x86_64.rb +++ b/lib/vanagon/platform/defaults/sles-15-x86_64.rb @@ -22,6 +22,6 @@ plat.install_build_dependencies_with "zypper -n --no-gpg-checks install -y" plat.vmpooler_template "sles-15-x86_64" plat.docker_registry "registry.suse.com/suse" - plat.docker_image "sle15:15.6" + plat.docker_image "sle15:15.5" plat.docker_arch "linux/amd64" end