Commit 8cb332b8 authored by tiwillia@redhat.com's avatar tiwillia@redhat.com

Remove gce provider requirements from garbage collector test

There is no reason for the garbage collector test to be restricted to the gce provider.
parent eb0e25f5
...@@ -30,11 +30,9 @@ import ( ...@@ -30,11 +30,9 @@ import (
// This test requires that --terminated-pod-gc-threshold=100 be set on the controller manager // This test requires that --terminated-pod-gc-threshold=100 be set on the controller manager
// //
// Slow by design (7 min) // Slow by design (7 min)
var _ = KubeDescribe("Garbage collector [Slow]", func() { var _ = KubeDescribe("Garbage collector [Feature:GarbageCollector] [Slow]", func() {
f := NewDefaultFramework("garbage-collector") f := NewDefaultFramework("garbage-collector")
It("should handle the creation of 1000 pods", func() { It("should handle the creation of 1000 pods", func() {
SkipUnlessProviderIs("gce")
var count int var count int
for count < 1000 { for count < 1000 {
pod, err := createTerminatingPod(f) pod, err := createTerminatingPod(f)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment