From 0adbdd926f1b8464dfb99b8461f2f2b4793b8c05 Mon Sep 17 00:00:00 2001 From: Fabian Koller Date: Tue, 27 Jan 2026 15:14:54 +0100 Subject: [PATCH] ci: disable libvirt TLS/TCP sockets for CI tests Mask libvirtd-tls.socket and libvirtd-tcp.socket via Ignition. CI tests only need local Unix socket access, not remote TLS connections. This avoids missing CA cert errors. --- .../actions/test/integration/build/dev-user-butane.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/actions/test/integration/build/dev-user-butane.yaml b/.github/actions/test/integration/build/dev-user-butane.yaml index b848645..f7a331f 100644 --- a/.github/actions/test/integration/build/dev-user-butane.yaml +++ b/.github/actions/test/integration/build/dev-user-butane.yaml @@ -85,3 +85,10 @@ storage: kernel.core_pattern=|/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h kernel.core_pipe_limit=16 fs.suid_dumpable=2 +# Disable libvirt sockets not required for CI tests +systemd: + units: + - name: libvirtd-tls.socket + mask: true + - name: libvirtd-tcp.socket + mask: true