Skip to content

Commit

Permalink
enable system internal tls for contour (#15374)
Browse files Browse the repository at this point in the history
  • Loading branch information
dprotaso authored Jul 8, 2024
1 parent a310476 commit a923915
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/e2e/systeminternaltls/system_internal_tls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ func TestSystemInternalTLS(t *testing.T) {
t.Skip("Alpha features not enabled")
}

if !(strings.Contains(test.ServingFlags.IngressClass, "kourier")) {
t.Skip("Skip this test for non-kourier ingress.")
if !strings.Contains(test.ServingFlags.IngressClass, "kourier") ||
strings.Contains(test.ServingFlags.IngressClass, "contour") {

t.Skip("Skip this test for non-kourier/contour ingress.")
}

t.Parallel()
Expand Down

0 comments on commit a923915

Please sign in to comment.