From b97665a7cbc7236ea408eac897885e5d6056c749 Mon Sep 17 00:00:00 2001 From: Robert Rose Date: Tue, 6 May 2025 08:16:25 +0200 Subject: [PATCH] k3s: remove timeout for importing container images in test The timeout caused the `airgap-images` test to fail on slower hardware. --- nixos/tests/k3s/airgap-images.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/k3s/airgap-images.nix b/nixos/tests/k3s/airgap-images.nix index ade04c99840a..84a535feb7fc 100644 --- a/nixos/tests/k3s/airgap-images.nix +++ b/nixos/tests/k3s/airgap-images.nix @@ -31,7 +31,7 @@ import ../make-test-python.nix ( start_all() machine.wait_for_unit("k3s") - machine.wait_until_succeeds("journalctl -r --no-pager -u k3s | grep \"Imported images from /var/lib/rancher/k3s/agent/images/\"", timeout=120) + machine.wait_until_succeeds("journalctl -r --no-pager -u k3s | grep \"Imported images from /var/lib/rancher/k3s/agent/images/\"") images = json.loads(machine.succeed("crictl img -o json")) image_names = [i["repoTags"][0] for i in images["images"]] with open("${k3s.imagesList}") as expected_images: