mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-04 01:40:07 +00:00
Add checking of events after all pods started to verify no failures in
density test #6637
This commit is contained in:
parent
f8d3092504
commit
93d1040fcd
@ -83,7 +83,8 @@ func DeleteRC(c *client.Client, ns, name string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Launch a Replication Controller and wait for all pods it spawns
|
// Launch a Replication Controller and wait for all pods it spawns
|
||||||
// to become running
|
// to become running. The controller will need to be cleaned up external
|
||||||
|
// to this method
|
||||||
func RunRC(c *client.Client, name string, ns, image string, replicas int) {
|
func RunRC(c *client.Client, name string, ns, image string, replicas int) {
|
||||||
defer GinkgoRecover()
|
defer GinkgoRecover()
|
||||||
|
|
||||||
@ -91,12 +92,6 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int) {
|
|||||||
current := 0
|
current := 0
|
||||||
same := 0
|
same := 0
|
||||||
|
|
||||||
defer func() {
|
|
||||||
By("Cleaning up the replication controller")
|
|
||||||
err := DeleteRC(c, ns, name)
|
|
||||||
Expect(err).NotTo(HaveOccurred())
|
|
||||||
}()
|
|
||||||
|
|
||||||
By(fmt.Sprintf("Creating replication controller %s", name))
|
By(fmt.Sprintf("Creating replication controller %s", name))
|
||||||
_, err := c.ReplicationControllers(ns).Create(&api.ReplicationController{
|
_, err := c.ReplicationControllers(ns).Create(&api.ReplicationController{
|
||||||
ObjectMeta: api.ObjectMeta{
|
ObjectMeta: api.ObjectMeta{
|
||||||
@ -138,7 +133,7 @@ func RunRC(c *client.Client, name string, ns, image string, replicas int) {
|
|||||||
} else if last == current {
|
} else if last == current {
|
||||||
same++
|
same++
|
||||||
} else if current < last {
|
} else if current < last {
|
||||||
Failf("Controller %s: Number of submitted pods dropped from %d to %d", last, current)
|
Failf("Controller %s: Number of submitted pods dropped from %d to %d", name, last, current)
|
||||||
}
|
}
|
||||||
|
|
||||||
if same >= failCount {
|
if same >= failCount {
|
||||||
@ -228,13 +223,21 @@ var _ = Describe("Density", func() {
|
|||||||
// during the test so clean it up here
|
// during the test so clean it up here
|
||||||
rc, err := c.ReplicationControllers(ns).Get(RCName)
|
rc, err := c.ReplicationControllers(ns).Get(RCName)
|
||||||
if err == nil && rc.Spec.Replicas != 0 {
|
if err == nil && rc.Spec.Replicas != 0 {
|
||||||
DeleteRC(c, ns, RCName)
|
By("Cleaning up the replication controller")
|
||||||
|
err := DeleteRC(c, ns, RCName)
|
||||||
|
expectNoError(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Clean up the namespace if a non-default one was used
|
||||||
|
if ns != api.NamespaceDefault {
|
||||||
|
By("Cleaning up the namespace")
|
||||||
|
err := c.Namespaces().Delete(ns)
|
||||||
|
expectNoError(err)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
// Tests with "Skipped" substring in their name will be skipped when running
|
// Tests with "Skipped" substring in their name will be skipped when running
|
||||||
// e2e test suite without --ginkgo.focus & --ginkgo.skip flags.
|
// e2e test suite without --ginkgo.focus & --ginkgo.skip flags.
|
||||||
|
|
||||||
type Density struct {
|
type Density struct {
|
||||||
skip bool
|
skip bool
|
||||||
podsPerMinion int
|
podsPerMinion int
|
||||||
@ -260,9 +263,38 @@ var _ = Describe("Density", func() {
|
|||||||
}
|
}
|
||||||
itArg := testArg
|
itArg := testArg
|
||||||
It(name, func() {
|
It(name, func() {
|
||||||
|
uuid := string(util.NewUUID())
|
||||||
totalPods := itArg.podsPerMinion * minionCount
|
totalPods := itArg.podsPerMinion * minionCount
|
||||||
RCName = "my-hostname-density" + strconv.Itoa(totalPods) + "-" + string(util.NewUUID())
|
nameStr := strconv.Itoa(totalPods) + "-" + uuid
|
||||||
|
ns = "e2e-density" + nameStr
|
||||||
|
RCName = "my-hostname-density" + nameStr
|
||||||
RunRC(c, RCName, ns, "gcr.io/google_containers/pause:go", totalPods)
|
RunRC(c, RCName, ns, "gcr.io/google_containers/pause:go", totalPods)
|
||||||
|
By("waiting for all events to be recorded")
|
||||||
|
last := -1
|
||||||
|
current := 0
|
||||||
|
var events *api.EventList
|
||||||
|
for last < current {
|
||||||
|
e, err := c.Events(ns).List(
|
||||||
|
labels.Everything(),
|
||||||
|
fields.Set{
|
||||||
|
"involvedObject.namespace": ns,
|
||||||
|
}.AsSelector(),
|
||||||
|
)
|
||||||
|
expectNoError(err)
|
||||||
|
last = current
|
||||||
|
current = len(e.Items)
|
||||||
|
events = e
|
||||||
|
time.Sleep(10 * time.Second)
|
||||||
|
}
|
||||||
|
Logf("Found %d events", current)
|
||||||
|
|
||||||
|
// Verify no pods were killed or failed to start
|
||||||
|
By("verifying no pods were killed or failed to start")
|
||||||
|
for _, e := range events.Items {
|
||||||
|
for _, s := range []string{"kill", "fail"} {
|
||||||
|
Expect(e.Reason).NotTo(ContainSubstring(s), "event:' %s', reason: '%s', message: '%s', field path: '%s'", e, e.ObjectMeta.Name, e.Message, e.InvolvedObject.FieldPath)
|
||||||
|
}
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -305,6 +337,8 @@ var _ = Describe("Density", func() {
|
|||||||
RunRC(c, name, ns, "gcr.io/google_containers/pause:go", n)
|
RunRC(c, name, ns, "gcr.io/google_containers/pause:go", n)
|
||||||
podsLaunched += n
|
podsLaunched += n
|
||||||
glog.Info("Launched %v pods so far...", podsLaunched)
|
glog.Info("Launched %v pods so far...", podsLaunched)
|
||||||
|
err := DeleteRC(c, ns, name)
|
||||||
|
expectNoError(err)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user