Skip to content

Commit a25df22

Browse files
committed
tests/multi-server: pin redpanda to v24.3.15
`:latest` resolves to v26.1.6, which aborts during seastar reactor init with "close() syscall failed: Invalid argument" on the self-hosted CI runners - even with the container running privileged (so seccomp/AppArmor/capability bounding are all off). That's a regression in the image itself, not a sandbox problem. Pin to v24.3.15 which starts cleanly. Bump when a newer tag is verified to work.
1 parent 137b9ef commit a25df22

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/tests/multi-server/environments/kafka.yml.j2

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,12 @@ x-common-config: &id001
3030
TEST_SUBNET: {{ test_subnet | default('172.16.0.0/12') }}
3131
services:
3232
kafka:
33-
image: docker.redpanda.com/redpandadata/redpanda:latest
33+
# Pinned to a specific 24.3.x release instead of :latest - the
34+
# current :latest (v26.1.6) hits a close() EINVAL during seastar
35+
# reactor init on the self-hosted CI runners even when the
36+
# container runs privileged. Bump when a newer tag is verified
37+
# to start cleanly on the runner.
38+
image: docker.redpanda.com/redpandadata/redpanda:v24.3.15
3439
# Redpanda's seastar reactor aborts during init under the default
3540
# Docker sandbox on self-hosted CI runners (close() EINVAL on an
3641
# internal fd). Run privileged so the broker starts reliably; it's

0 commit comments

Comments
 (0)