From 1a1afece7d47b1e3bd0b83d0d52cfbde819be2f7 Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Tue, 23 Sep 2025 15:26:36 +1000 Subject: [PATCH] fix: e2e test rebind the registry port to unoccupied 5001 --- test/e2e/compose_build_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/compose_build_test.go b/test/e2e/compose_build_test.go index 888590c2..18c3648a 100644 --- a/test/e2e/compose_build_test.go +++ b/test/e2e/compose_build_test.go @@ -29,7 +29,7 @@ func TestComposeBuild(t *testing.T) { clusterName := "ucind-test.compose-build" ctx := context.Background() - registryInternalPort := "5000/tcp" + registryInternalPort := "5001/tcp" clusterOpts := ucind.CreateClusterOptions{ Machines: 1, PortMap: nat.PortMap{ @@ -79,7 +79,7 @@ func TestComposeBuild(t *testing.T) { Ports: []api.PortSpec{ { ContainerPort: 5000, - PublishedPort: 5000, + PublishedPort: 5001, Mode: api.PortModeHost, Protocol: api.ProtocolTCP, },