var StatusCmd = &cobra.Command{
Use: "status",
Short: "Show the current backplane login info",
Long: `It will read the effecitve cluster id from the kubeconfig,
and print the essential info.
`,
Args: cobra.ExactArgs(0),
RunE: runStatus,
SilenceUsage: true,
}