Enabled load e2e test for gce-scalability

pull/6/head
Piotr Szczesniak 2015-05-12 15:44:44 +02:00
parent 962f10ee58
commit f20fc5644c
1 changed files with 2 additions and 6 deletions

View File

@ -70,19 +70,15 @@ var _ = Describe("Load", func() {
})
type Load struct {
skip bool
podsPerNode int
}
loadTests := []Load{
{podsPerNode: 30, skip: true},
{podsPerNode: 30},
}
for _, testArg := range loadTests {
name := fmt.Sprintf("should be able to handle %v pods per node", testArg.podsPerNode)
if testArg.skip {
name = "[Skipped] " + name
}
name := fmt.Sprintf("[Performance suite] [Skipped] should be able to handle %v pods per node", testArg.podsPerNode)
It(name, func() {
totalPods := testArg.podsPerNode * nodeCount