Remove ns creation in federated cluster when getting registered clusters

This commit is contained in:
shashidharatd 2017-02-19 11:46:33 +05:30
parent 8911e2a377
commit 43cf502275

View File

@ -207,7 +207,6 @@ func getRegisteredClusters(userAgentName string, f *fedframework.Framework) (map
Expect(framework.TestContext.KubeConfig).ToNot(Equal(""), "KubeConfig must be specified to load clusters' client config")
clusters[c.Name] = &cluster{c.Name, createClientsetForCluster(c, i, userAgentName), false, nil}
}
createNamespaceInClusters(clusters, f)
return clusters, primaryClusterName
}