// This call returns the ready-to-use configuration based on the configuration file that might or might not exist and the default cfg populated by flags
cmd.Flags().StringVar(&cfg.CertificatesDir,"cert-dir",cfg.CertificatesDir,"The path where certificates are stored")
cmd.Flags().StringVar(&cfg.APIEndpoint.AdvertiseAddress,"apiserver-advertise-address",cfg.APIEndpoint.AdvertiseAddress,"The IP address the API server is accessible on")
cmd.Flags().Int32Var(&cfg.APIEndpoint.BindPort,"apiserver-bind-port",cfg.APIEndpoint.BindPort,"The port the API server is accessible on")
cmd.Flags().StringVar(&token,"token",token,"The token that should be used as the authentication mechanism for this kubeconfig, instead of client certificates")
cmd.Flags().StringVar(&clientName,"client-name",clientName,"The name of user. It will be used as the CN if client certificates are created")
cmd.Flags().StringSliceVar(&organizations,"org",organizations,"The orgnizations of the client certificate. It will be used as the O if client certificates are created")
cmd.Flags().StringVar(&kubeletVersionStr,"kubelet-version",kubeletVersionStr,"The desired version for the kubelet. Defaults to being autodetected from 'kubelet --version'.")
cmd.Flags().StringVar(&cfg.CertificatesDir,"cert-dir",cfg.CertificatesDir,"The path where certificates are stored")
cmd.Flags().StringVar(&cfg.APIEndpoint.AdvertiseAddress,"apiserver-advertise-address",cfg.APIEndpoint.AdvertiseAddress,"The IP address the API server is accessible on")
cmd.Flags().Int32Var(&cfg.APIEndpoint.BindPort,"apiserver-bind-port",cfg.APIEndpoint.BindPort,"The port the API server is accessible on")
cmd.Flags().StringVar(&outDir,"kubeconfig-dir",outDir,"The path where to save the kubeconfig file")
cmd.Flags().StringVar(&token,"token",token,"The token that should be used as the authentication mechanism for this kubeconfig, instead of client certificates")
cmd.Flags().StringVar(&clientName,"client-name",clientName,"The name of user. It will be used as the CN if client certificates are created")
cmd.Flags().StringSliceVar(&organizations,"org",organizations,"The orgnizations of the client certificate. It will be used as the O if client certificates are created")
cmd.Flags().StringVar(&kubeletVersionStr,"kubelet-version",kubeletVersionStr,"The desired version for the kubelet. Defaults to being autodetected from 'kubelet --version'.")