mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 22:46:12 +00:00
Merge pull request #75473 from pontiyaraja/podCNF
promote pod should be submitted and removed e2e test case to conformance
This commit is contained in:
commit
2a6efd3fe7
1
test/conformance/testdata/conformance.txt
vendored
1
test/conformance/testdata/conformance.txt
vendored
@ -196,6 +196,7 @@ test/e2e/network/service.go: "should serve multiport endpoints from pods"
|
|||||||
test/e2e/network/service_latency.go: "should not be very high"
|
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/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"
|
test/e2e/node/pods.go: "should be submitted and removed"
|
||||||
|
test/e2e/node/pods.go: "should be submitted and removed"
|
||||||
test/e2e/node/pre_stop.go: "should call prestop when killing a pod"
|
test/e2e/node/pre_stop.go: "should call prestop when killing a pod"
|
||||||
test/e2e/scheduling/predicates.go: "validates resource limits of pods that are allowed to run"
|
test/e2e/scheduling/predicates.go: "validates resource limits of pods that are allowed to run"
|
||||||
test/e2e/scheduling/predicates.go: "validates that NodeSelector is respected if not matching"
|
test/e2e/scheduling/predicates.go: "validates that NodeSelector is respected if not matching"
|
||||||
|
@ -46,13 +46,13 @@ var _ = SIGDescribe("Pods Extended", func() {
|
|||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
podClient = f.PodClient()
|
podClient = f.PodClient()
|
||||||
})
|
})
|
||||||
// TODO: Fix Flaky issue #68066 and then re-add this back into Conformance Suite
|
|
||||||
/*
|
/*
|
||||||
Release : v1.9
|
Release : v1.15
|
||||||
Testname: Pods, delete grace period
|
Testname: Pods, delete grace period
|
||||||
Description: Create a pod, make sure it is running, create a watch to observe Pod creation. Create a 'kubectl local proxy', capture the port the proxy is listening. Using the http client send a ‘delete’ with gracePeriodSeconds=30. Pod SHOULD get deleted within 30 seconds.
|
Description: Create a pod, make sure it is running. Create a 'kubectl local proxy', capture the port the proxy is listening. Using the http client send a ‘delete’ with gracePeriodSeconds=30. Pod SHOULD get deleted within 30 seconds.
|
||||||
*/
|
*/
|
||||||
It("should be submitted and removed [Flaky]", func() {
|
framework.ConformanceIt("should be submitted and removed", func() {
|
||||||
By("creating the pod")
|
By("creating the pod")
|
||||||
name := "pod-submit-remove-" + string(uuid.NewUUID())
|
name := "pod-submit-remove-" + string(uuid.NewUUID())
|
||||||
value := strconv.Itoa(time.Now().Nanosecond())
|
value := strconv.Itoa(time.Now().Nanosecond())
|
||||||
|
Loading…
Reference in New Issue
Block a user