Skip to content

Commit

Permalink
Merge pull request #16797 from rifelpet/cilium-protocol
Browse files Browse the repository at this point in the history
Stop skipping protocol tests for future Cilium versions
  • Loading branch information
k8s-ci-robot authored Aug 31, 2024
2 parents 70cbc64 + 50e9602 commit f31b242
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions tests/e2e/pkg/tester/skip_regex.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,15 @@ func (t *Tester) setSkipRegexFlag() error {
skipRegex += "|TCP.CLOSE_WAIT"
// https://github.com/cilium/cilium/issues/15361
skipRegex += "|external.IP.is.not.assigned.to.a.node"
// https://github.com/cilium/cilium/issues/14287
skipRegex += "|same.port.number.but.different.protocols"
skipRegex += "|same.hostPort.but.different.hostIP.and.protocol"
// https://github.com/cilium/cilium/issues/9207
skipRegex += "|serve.endpoints.on.same.port.and.different.protocols"

if networking.Cilium.Version < "v1.17" {
// https://github.com/cilium/cilium/issues/14287
skipRegex += "|same.port.number.but.different.protocols"
skipRegex += "|same.hostPort.but.different.hostIP.and.protocol"
// https://github.com/cilium/cilium/issues/9207
skipRegex += "|serve.endpoints.on.same.port.and.different.protocols"
}

// https://github.com/kubernetes/kubernetes/blob/418ae605ec1b788d43bff7ac44af66d8b669b833/test/e2e/network/networking.go#L135
skipRegex += "|should.check.kube-proxy.urls"

Expand Down

0 comments on commit f31b242

Please sign in to comment.