Skip to content

Commit 8d0fb17

Browse files
stlazaramase
authored andcommitted
e2e test registry: force IPv4 localhost IP
Signed-off-by: Stanislav Láznička <[email protected]>
1 parent ad0a3de commit 8d0fb17

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/e2e/framework/registry/registry.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ func SetupRegistry(ctx context.Context, f *framework.Framework, podOnly bool) (s
102102
podNodes = append(podNodes, pod.Spec.NodeName)
103103
}
104104

105-
return "localhost:5000", podNodes, nil
105+
// returning the IPv4 form here, IPv6 is causing issues in node-conformance on dual-stack
106+
return "127.0.0.1:5000", podNodes, nil
106107
}
107108

108109
func podManifest(podTestLabel string) (*v1.Pod, error) {

0 commit comments

Comments
 (0)