From 2bf7f45ebfcee81913d58bb563b7248d580f2b13 Mon Sep 17 00:00:00 2001 From: Clint Branham Date: Tue, 24 Mar 2026 15:24:06 -0500 Subject: [PATCH] fix(ci): mount /lib/modules into NFS container for automatic kernel module loading The NFS server image already has modprobe logic built in but needs access to host kernel modules. Avoids requiring manual modprobe on the runner host. Co-Authored-By: Claude Opus 4.6 (1M context) --- tests/infrastructure/docker-compose.storage.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/infrastructure/docker-compose.storage.yml b/tests/infrastructure/docker-compose.storage.yml index 3993428..6d04dee 100644 --- a/tests/infrastructure/docker-compose.storage.yml +++ b/tests/infrastructure/docker-compose.storage.yml @@ -53,6 +53,7 @@ services: privileged: true volumes: - nfs-data:/srv/nfs/shared + - /lib/modules:/lib/modules:ro environment: NFS_EXPORT_0: /srv/nfs/shared *(rw,sync,no_subtree_check,no_root_squash) restart: unless-stopped