flag.StringVar(&kubeconfig,"kubeconfig",filepath.Join(home,".kube","config"),"(optional) Absolute path to the kubeconfig file")
}else{
flag.StringVar(&kubeconfig,"kubeconfig","","Absolute path to the kubeconfig file")
}
flag.StringVar(&cloudConfig.ProjectID,"project","","GCE project being used")
flag.StringVar(&cloudConfig.Zone,"zone","","GCE zone being used")
flag.StringVar(&cloudConfig.Region,"region","","GCE region being used")
flag.Var(&numIngressesTest,"num-ingresses","The number of ingresses to test, specify multiple times for step testing (e.g. 5 ingresses -> 20 ingresses -> 100 ingresses)")
flag.BoolVar(&enableTLS,"enable-tls",true,"Whether to enable TLS on ingress")
flag.StringVar(&testNamespace,"namespace","ingress-test-scale","Namespace for testing")
flag.StringVar(&outputFile,"output","","If specify, dump latencies to the specified file")
flag.BoolVar(&cleanup,"cleanup",true,"Whether to cleanup resources after test")