func init()

in cmd/localdev/main.go [85:97]


func init() {
	flag.StringVar(&project, "project", "", "your GCP project id")
	flag.StringVar(&location, "location", "", "your cluster region/zone")
	flag.StringVar(&cluster, "cluster", "", "your cluster name")
	if home := homedir.HomeDir(); home != "" {
		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")
	}

	klog.InitFlags(nil)
	flag.Parse()
}