mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 11:21:47 +00:00
Promote NodePort service creation e2e test to conformance
This commit is contained in:
parent
2c2ca27bfc
commit
60a51ce020
1
test/conformance/testdata/conformance.txt
vendored
1
test/conformance/testdata/conformance.txt
vendored
@ -208,6 +208,7 @@ test/e2e/network/proxy.go: "should proxy through a service and a pod"
|
||||
test/e2e/network/service.go: "should provide secure master service"
|
||||
test/e2e/network/service.go: "should serve a basic endpoint from pods"
|
||||
test/e2e/network/service.go: "should serve multiport endpoints from pods"
|
||||
test/e2e/network/service.go: "should be able to create a functioning NodePort service"
|
||||
test/e2e/network/service_latency.go: "should not be very high"
|
||||
test/e2e/node/events.go: "should be sent by kubelets and the scheduler about pods scheduling and running"
|
||||
test/e2e/node/pods.go: "should be submitted and removed"
|
||||
|
@ -507,10 +507,14 @@ var _ = SIGDescribe("Services", func() {
|
||||
framework.ExpectNoError(e2eservice.VerifyServeHostnameServiceUp(cs, ns, host, podNames2, svc2IP, servicePort))
|
||||
})
|
||||
|
||||
// TODO: Run this test against the userspace proxy and nodes
|
||||
// configured with a default deny firewall to validate that the
|
||||
// proxy whitelists NodePort traffic.
|
||||
ginkgo.It("should be able to create a functioning NodePort service", func() {
|
||||
/*
|
||||
Release : v1.16
|
||||
Testname: Service, NodePort Service
|
||||
Description: Create a TCP NodePort service, and test reachability from a client Pod.
|
||||
The client Pod MUST be able to access the NodePort service by service name and cluster
|
||||
IP on the service port, and on nodes' internal and external IPs on the NodePort.
|
||||
*/
|
||||
framework.ConformanceIt("should be able to create a functioning NodePort service", func() {
|
||||
serviceName := "nodeport-test"
|
||||
ns := f.Namespace.Name
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user