Skip to content

Commit

Permalink
tmp cancel cilium external svc test (#1531)
Browse files Browse the repository at this point in the history
  • Loading branch information
lut777 committed May 16, 2022
1 parent 16d28f7 commit 4b0bd69
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions test/e2e/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,10 @@ var _ = Describe("[Service]", func() {
})

It("external to ClusterIP", func() {
if ciliumChaining {
return
}

port := hostService.Spec.Ports[0].Port
for _, ip := range hostService.Spec.ClusterIPs {
checkService(checkCount, true, "docker", append(dockerArgs, strings.Fields(curlArgs(ip, port))...)...)
Expand Down Expand Up @@ -294,6 +298,10 @@ var _ = Describe("[Service]", func() {
})

It("external to ClusterIP", func() {
if ciliumChaining {
return
}

port := localEtpHostService.Spec.Ports[0].Port
for _, ip := range localEtpHostService.Spec.ClusterIPs {
checkService(checkCount, true, "docker", append(dockerArgs, strings.Fields(curlArgs(ip, port))...)...)
Expand Down

0 comments on commit 4b0bd69

Please sign in to comment.