mirror of https://github.com/k3s-io/k3s
Merge pull request #50198 from xiangpengzhao/e2e-nw
Automatic merge from submit-queue (batch tested with PRs 50198, 49051, 48432) Add prefix to common networking e2e tests **What this PR does / why we need it**: Common networking e2e tests shared by node and cluster suites should also have prefix `[sig-network]`. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # Umbrella issue #49161 **Special notes for your reviewer**: /cc @bowei **Release note**: ```release-note NONE ```pull/6/head
commit
722d217e5a
|
@ -22,10 +22,10 @@ import (
|
|||
"k8s.io/kubernetes/test/e2e/framework"
|
||||
)
|
||||
|
||||
var _ = framework.KubeDescribe("Networking", func() {
|
||||
var _ = Describe("[sig-network] Networking", func() {
|
||||
f := framework.NewDefaultFramework("pod-network-test")
|
||||
|
||||
framework.KubeDescribe("Granular Checks: Pods", func() {
|
||||
Describe("Granular Checks: Pods", func() {
|
||||
|
||||
// Try to hit all endpoints through a test container, retry 5 times,
|
||||
// expect exactly one unique hostname. Each of these endpoints reports
|
||||
|
|
Loading…
Reference in New Issue