Merge pull request #18536 from mikedanese/ns-label

Auto commit by PR queue bot
This commit is contained in:
k8s-merge-robot
2015-12-17 02:38:04 -08:00
6 changed files with 17 additions and 5 deletions

View File

@@ -74,7 +74,9 @@ func (f *Framework) beforeEach() {
f.Client = c
By("Building a namespace api object")
namespace, err := createTestingNS(f.BaseName, f.Client)
namespace, err := createTestingNS(f.BaseName, f.Client, map[string]string{
"e2e-framework": f.BaseName,
})
Expect(err).NotTo(HaveOccurred())
f.Namespace = namespace