Fix Kubemark tests by not gathering resource usage data

This commit is contained in:
Wojciech Tyczynski
2015-11-09 11:05:52 +01:00
parent 3e5589c1af
commit 5e9fe7abff
5 changed files with 20 additions and 17 deletions

View File

@@ -109,21 +109,22 @@ type CloudConfig struct {
}
type TestContextType struct {
KubeConfig string
KubeContext string
CertDir string
Host string
RepoRoot string
Provider string
CloudConfig CloudConfig
KubectlPath string
OutputDir string
prefix string
MinStartupPods int
UpgradeTarget string
PrometheusPushGateway string
VerifyServiceAccount bool
DeleteNamespace bool
KubeConfig string
KubeContext string
CertDir string
Host string
RepoRoot string
Provider string
CloudConfig CloudConfig
KubectlPath string
OutputDir string
prefix string
MinStartupPods int
UpgradeTarget string
PrometheusPushGateway string
VerifyServiceAccount bool
DeleteNamespace bool
GatherKubeSystemResourceUsageData bool
}
var testContext TestContextType