Skip to content

Commit 86a7a95

Browse files
author
k8s-merge-robot
committed
Merge pull request kubernetes#20924 from kubernetes/revert-20651-quarantine-reboot
Auto commit by PR queue bot
2 parents c382943 + 2ad245b commit 86a7a95

File tree

3 files changed

+5
-35
lines changed

3 files changed

+5
-35
lines changed

hack/jenkins/e2e.sh

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -403,24 +403,6 @@ case ${JOB_NAME} in
403403

404404
# Feature jobs
405405

406-
# Runs only the reboot tests on GCE.
407-
kubernetes-e2e-gce-reboot)
408-
: ${E2E_CLUSTER_NAME:="jenkins-gce-e2e-reboot"}
409-
: ${E2E_NETWORK:="e2e-reboot"}
410-
: ${GINKGO_TEST_ARGS:="--ginkgo.focus=\[Feature:Reboot\]"}
411-
: ${KUBE_GCE_INSTANCE_PREFIX:="e2e-reboot"}
412-
: ${PROJECT:="kubernetes-jenkins"}
413-
;;
414-
415-
kubernetes-e2e-gke-reboot)
416-
: ${E2E_CLUSTER_NAME:="jkns-gke-e2e-ci-reboot"}
417-
: ${E2E_NETWORK:="e2e-gke-ci-reboot"}
418-
: ${E2E_SET_CLUSTER_API_VERSION:=y}
419-
: ${PROJECT:="k8s-jkns-e2e-gke-ci-reboot"}
420-
: ${FAIL_ON_GCP_RESOURCE_LEAK:="true"}
421-
: ${GINKGO_TEST_ARGS:="--ginkgo.focus=\[Feature:Reboot\]"}
422-
;;
423-
424406
# Runs only the examples tests on GCE.
425407
kubernetes-e2e-gce-examples)
426408
: ${E2E_CLUSTER_NAME:="jenkins-gce-e2e-examples"}

hack/jenkins/job-configs/kubernetes-e2e.yaml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -189,23 +189,13 @@
189189
timeout: 300
190190
emails: '$DEFAULT_RECIPIENTS, [email protected]'
191191
test-owner: 'ihmccreery'
192-
- 'gce-reboot':
193-
description: 'Run [Feature:Reboot] tests on GCE using the latest successful build.'
194-
timeout: 120
195-
emails: '$DEFAULT_RECIPIENTS, [email protected]'
196-
test-owner: 'ihmccreery'
197-
- 'gke-reboot':
198-
description: 'Run [Feature:Reboot] tests on GKE using the latest successful build.'
199-
timeout: 120
200-
emails: '$DEFAULT_RECIPIENTS, [email protected]'
201-
test-owner: 'ihmccreery'
202-
- 'gce-ingress':
203-
description: 'Run [Feature:Ingress] tests on GCE using the latest successful build.'
192+
- 'gke-ingress':
193+
description: 'Run [Feature:Ingress] tests on GKE using the latest successful build.'
204194
timeout: 90
205195
emails: '$DEFAULT_RECIPIENTS, [email protected]'
206196
test-owner: 'beeps'
207-
- 'gke-ingress':
208-
description: 'Run [Feature:Ingress] tests on GKE using the latest successful build.'
197+
- 'gce-ingress':
198+
description: 'Run [Feature:Ingress] tests on GCE using the latest successful build.'
209199
timeout: 90
210200
emails: '$DEFAULT_RECIPIENTS, [email protected]'
211201
test-owner: 'beeps'

test/e2e/reboot.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,7 @@ const (
4545
rebootPodReadyAgainTimeout = 5 * time.Minute
4646
)
4747

48-
// Reboot tests are flaky, and when they break, they break the whole cluster.
49-
// They need to run in a separate suite until we can make them better.
50-
var _ = Describe("Reboot [Disruptive] [Feature:Reboot]", func() {
48+
var _ = Describe("Reboot [Disruptive]", func() {
5149
var f *Framework
5250

5351
BeforeEach(func() {

0 commit comments

Comments
 (0)