2018-03-14 14:12:26 +08:00
|
|
|
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
2017-11-10 11:53:05 +08:00
|
|
|
// RAINBOND, Application Management Platform
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-10 11:53:05 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
|
|
// must be obtained first.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-10 11:53:05 +08:00
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2017-11-10 11:53:05 +08:00
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-11-09 17:56:12 +08:00
|
|
|
package cmd
|
2017-11-13 14:28:41 +08:00
|
|
|
|
2017-11-09 17:56:12 +08:00
|
|
|
import (
|
2017-11-13 14:28:41 +08:00
|
|
|
"github.com/Sirupsen/logrus"
|
2017-11-10 11:53:05 +08:00
|
|
|
conf "github.com/goodrain/rainbond/cmd/grctl/option"
|
2018-04-24 16:44:59 +08:00
|
|
|
"github.com/goodrain/rainbond/grctl/clients"
|
2017-11-13 14:28:41 +08:00
|
|
|
"github.com/urfave/cli"
|
2017-11-09 17:56:12 +08:00
|
|
|
)
|
|
|
|
|
2017-11-13 14:28:41 +08:00
|
|
|
//GetCmds GetCmds
|
2017-11-09 17:56:12 +08:00
|
|
|
func GetCmds() []cli.Command {
|
2017-11-13 14:28:41 +08:00
|
|
|
cmds := []cli.Command{}
|
2017-12-21 18:33:41 +08:00
|
|
|
cmds = append(cmds, NewCmdService())
|
|
|
|
|
2017-11-13 14:28:41 +08:00
|
|
|
cmds = append(cmds, NewCmdTenant())
|
|
|
|
cmds = append(cmds, NewCmdNode())
|
2018-07-16 19:06:57 +08:00
|
|
|
cmds = append(cmds, NewCmdCluster())
|
2017-11-13 14:28:41 +08:00
|
|
|
cmds = append(cmds, NewCmdExec())
|
2017-11-22 11:40:14 +08:00
|
|
|
cmds = append(cmds, NewCmdInit())
|
2017-12-05 14:47:36 +08:00
|
|
|
cmds = append(cmds, NewCmdShow())
|
2017-12-19 18:46:49 +08:00
|
|
|
|
|
|
|
//task相关命令
|
2018-07-17 16:18:19 +08:00
|
|
|
//cmds = append(cmds, NewCmdTasks())
|
2017-12-20 13:48:49 +08:00
|
|
|
//数据中心配置相关命令
|
|
|
|
cmds = append(cmds, NewCmdConfigs())
|
2017-11-23 15:05:46 +08:00
|
|
|
|
|
|
|
//cmds = append(cmds, NewCmdComputeGroup())
|
2018-07-17 16:18:19 +08:00
|
|
|
//cmds = append(cmds, NewCmdInstall())
|
2017-12-11 14:29:36 +08:00
|
|
|
//cmds = append(cmds, NewCmdInstallStatus())
|
2017-11-23 15:05:46 +08:00
|
|
|
|
2017-12-11 14:29:36 +08:00
|
|
|
cmds = append(cmds, NewCmdDomain())
|
|
|
|
|
2017-11-23 15:05:46 +08:00
|
|
|
//cmds = append(cmds, NewCmdBaseManageGroup())
|
|
|
|
//cmds = append(cmds, NewCmdManageGroup())
|
|
|
|
|
2018-07-16 19:06:57 +08:00
|
|
|
//cmds = append(cmds, NewCmdSources())
|
|
|
|
//cmds = append(cmds, NewCmdCloudAuth())
|
2017-11-23 15:05:46 +08:00
|
|
|
//cmds = append(cmds, NewCmdRegionNode())
|
|
|
|
//cmds = append(cmds, NewCmdTest())
|
2017-11-13 14:28:41 +08:00
|
|
|
//cmds = append(cmds, NewCmdPlugin())
|
2017-11-09 17:56:12 +08:00
|
|
|
//todo
|
|
|
|
return cmds
|
|
|
|
}
|
2017-11-22 15:09:28 +08:00
|
|
|
|
|
|
|
//Common Common
|
2017-11-09 17:56:12 +08:00
|
|
|
func Common(c *cli.Context) {
|
|
|
|
config, err := conf.LoadConfig(c)
|
|
|
|
if err != nil {
|
2018-03-20 19:18:01 +08:00
|
|
|
logrus.Warn("Load config file error.", err.Error())
|
2017-11-09 17:56:12 +08:00
|
|
|
}
|
2018-03-20 19:18:01 +08:00
|
|
|
if err := clients.InitClient(c.GlobalString("kubeconfig")); err != nil {
|
2017-11-22 15:17:33 +08:00
|
|
|
logrus.Errorf("error config k8s,details %s", err.Error())
|
2017-11-09 17:56:12 +08:00
|
|
|
}
|
|
|
|
//clients.SetInfo(config.RegionAPI.URL, config.RegionAPI.Token)
|
2018-03-20 19:18:01 +08:00
|
|
|
if err := clients.InitRegionClient(config.RegionAPI); err != nil {
|
2017-11-22 11:40:14 +08:00
|
|
|
logrus.Warnf("error config region")
|
|
|
|
}
|
2017-11-13 14:28:41 +08:00
|
|
|
}
|