isup=flag.Bool("isup",false,"Check to see if the e2e cluster is up, then exit.")
build=flag.Bool("build",false,"If true, build a new release. Otherwise, use whatever is there.")
version=flag.String("version","","The version to be tested (including the leading 'v'). An empty string defaults to the local build, but it can be set to any release (e.g. v0.4.4, v0.6.0).")
up=flag.Bool("up",false,"If true, start the the e2e cluster. If cluster is already up, recreate it.")
push=flag.Bool("push",false,"If true, push to e2e cluster. Has no effect if -up is true.")
pushup=flag.Bool("pushup",false,"If true, push to e2e cluster if it's up, otherwise start the e2e cluster.")
...
...
@@ -57,7 +60,20 @@ var (
ctlCmd=flag.String("ctl","","If nonempty, pass this as an argument, and call kubectl. Implies -v. (-test, -cfg, -ctl are mutually exclusive)")