Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions e2e/install_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package e2e
import (
"encoding/base64"
"fmt"
"net"
"os"
"strings"
"testing"
Expand Down Expand Up @@ -690,8 +691,7 @@ spec:
t.Logf("%s: test complete", time.Now().Format(time.RFC3339))
}

//Temporarily disable network test until the reporting is enriched to the point where we can properly filter out domains as part of a CNAME chain
/*func TestSingleNodeNetworkReport(t *testing.T) {
func TestSingleNodeNetworkReport(t *testing.T) {
t.Parallel()
RequireEnvVars(t, []string{"SHORT_SHA"})
tc := cmx.NewCluster(&cmx.ClusterInput{
Expand Down Expand Up @@ -746,6 +746,7 @@ spec:
allowedDomains := map[string]struct{}{
"ec-e2e-proxy.testcluster.net": {},
"ec-e2e-replicated-app.testcluster.net": {},
"*": {}, // Triggered by host preflight wildcard-check
}

seenAllowedDomains := map[string]struct{}{}
Expand Down Expand Up @@ -773,4 +774,4 @@ spec:
t.Fail()
}
}
}*/
}