add a label to namespaces created by e2e framework

This commit is contained in:
Mike Danese
2015-12-10 14:20:48 -08:00
parent aaa1fe67f6
commit a3b6674fbf
6 changed files with 17 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ func extinguish(c *client.Client, totalNS int, maxAllowedAfterDel int, maxSecond
go func(n int) {
defer wg.Done()
defer GinkgoRecover()
_, err = createTestingNS(fmt.Sprintf("nslifetest-%v", n), c)
_, err = createTestingNS(fmt.Sprintf("nslifetest-%v", n), c, nil)
Expect(err).NotTo(HaveOccurred())
}(n)
}