Implementation of e2e test that resizes cluster (works on GCE).

This commit is contained in:
Jerzy Szczepkowski
2015-04-23 16:28:16 +02:00
parent d9d12fd3f7
commit ef965a60f2
5 changed files with 398 additions and 46 deletions

View File

@@ -84,6 +84,8 @@ func init() {
flag.StringVar(&cloudConfig.MasterName, "kube-master", "", "Name of the kubernetes master. Only required if provider is gce or gke")
flag.StringVar(&cloudConfig.ProjectID, "gce-project", "", "The GCE project being used, if applicable")
flag.StringVar(&cloudConfig.Zone, "gce-zone", "", "GCE zone being used, if applicable")
flag.StringVar(&cloudConfig.NodeInstanceGroup, "node-instance-group", "", "Name of the managed instance group for nodes. Valid only for gce")
flag.IntVar(&cloudConfig.NumNodes, "num-nodes", -1, "Number of nodes in the cluster")
}
func TestE2E(t *testing.T) {