2017-11-10 15:00:52 +08:00
|
|
|
// RAINBOND, Application Management Platform
|
|
|
|
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/goodrain/rainbond/pkg/grctl/clients"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-11-20 17:29:39 +08:00
|
|
|
"k8s.io/apimachinery/pkg/fields"
|
2017-11-10 15:00:52 +08:00
|
|
|
"github.com/apcera/termtables"
|
|
|
|
"fmt"
|
2017-11-23 11:35:05 +08:00
|
|
|
"github.com/goodrain/rainbond/pkg/node/api/model"
|
2017-11-10 15:00:52 +08:00
|
|
|
"strings"
|
2017-11-20 17:29:39 +08:00
|
|
|
"strconv"
|
2017-11-23 15:05:46 +08:00
|
|
|
"errors"
|
2017-11-10 15:00:52 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
func NewCmdNode() cli.Command {
|
|
|
|
c:=cli.Command{
|
|
|
|
Name: "node",
|
2017-11-23 15:05:46 +08:00
|
|
|
Usage: "节点。grctl node",
|
2017-11-22 18:46:17 +08:00
|
|
|
Subcommands:[]cli.Command{
|
|
|
|
{
|
2017-11-23 15:05:46 +08:00
|
|
|
Name: "get",
|
|
|
|
Usage: "get hostID",
|
2017-11-22 18:46:17 +08:00
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
id:=c.Args().First()
|
2017-11-23 15:05:46 +08:00
|
|
|
if id == "" {
|
|
|
|
logrus.Errorf("need hostID")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
n:=clients.NodeClient.Nodes().Get(id)
|
2017-11-23 17:59:40 +08:00
|
|
|
v:=n.Node
|
|
|
|
table := termtables.CreateTable()
|
|
|
|
table.AddHeaders("uid", "IP", "HostName","role","alived","unschedulable","available_memory","available_cpu")
|
|
|
|
table.AddRow(v.ID, v.InternalIP, v.HostName,v.Role.String(),v.Alived,v.Unschedulable,v.AvailableMemory,v.AvailableCPU)
|
|
|
|
|
|
|
|
fmt.Println(table.Render())
|
2017-11-22 18:46:17 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2017-11-23 15:05:46 +08:00
|
|
|
Name: "list",
|
|
|
|
Usage: "list",
|
2017-11-22 18:46:17 +08:00
|
|
|
Action: func(c *cli.Context) error {
|
2017-11-23 15:05:46 +08:00
|
|
|
list:=clients.NodeClient.Nodes().List()
|
2017-11-23 16:13:45 +08:00
|
|
|
serviceTable := termtables.CreateTable()
|
|
|
|
serviceTable.AddHeaders("uid", "IP", "HostName","role","alived","unschedulable")
|
|
|
|
for _,v:=range list{
|
|
|
|
serviceTable.AddRow(v.ID, v.InternalIP,v.HostName, v.Role.String(),v.Alived,v.Unschedulable)
|
|
|
|
}
|
|
|
|
fmt.Println(serviceTable.Render())
|
2017-11-22 18:46:17 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2017-11-23 15:05:46 +08:00
|
|
|
Name: "up",
|
|
|
|
Usage: "up hostID",
|
2017-11-22 18:46:17 +08:00
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
id:=c.Args().First()
|
2017-11-23 15:05:46 +08:00
|
|
|
if id == "" {
|
|
|
|
logrus.Errorf("need hostID")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
clients.NodeClient.Nodes().Get(id).Up()
|
2017-11-22 18:46:17 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2017-11-23 15:05:46 +08:00
|
|
|
Name: "down",
|
|
|
|
Usage: "down hostID",
|
2017-11-22 18:46:17 +08:00
|
|
|
Action: func(c *cli.Context) error {
|
2017-11-23 15:05:46 +08:00
|
|
|
id:=c.Args().First()
|
|
|
|
if id == "" {
|
|
|
|
logrus.Errorf("need hostID")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
clients.NodeClient.Nodes().Get(id).Down()
|
2017-11-22 18:46:17 +08:00
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "unscheduable",
|
|
|
|
Usage: "unscheduable hostID",
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
id:=c.Args().First()
|
2017-11-23 15:05:46 +08:00
|
|
|
if id == "" {
|
|
|
|
logrus.Errorf("need hostID")
|
|
|
|
return nil
|
|
|
|
}
|
2017-11-22 18:46:17 +08:00
|
|
|
clients.NodeClient.Nodes().Get(id).UnSchedulable()
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "rescheduable",
|
|
|
|
Usage: "rescheduable hostID",
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
id:=c.Args().First()
|
2017-11-23 15:05:46 +08:00
|
|
|
if id == "" {
|
|
|
|
logrus.Errorf("need hostID")
|
|
|
|
return nil
|
|
|
|
}
|
2017-11-22 18:46:17 +08:00
|
|
|
clients.NodeClient.Nodes().Get(id).ReSchedulable()
|
|
|
|
return nil
|
|
|
|
},
|
|
|
|
},
|
2017-11-23 15:05:46 +08:00
|
|
|
{
|
|
|
|
Name: "add",
|
|
|
|
Usage: "add 添加节点",
|
|
|
|
Flags: []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "Hostname,hn",
|
|
|
|
Value:"",
|
|
|
|
Usage: "Hostname",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "InternalIP,i",
|
|
|
|
Value:"",
|
2017-11-27 12:06:28 +08:00
|
|
|
Usage: "InternalIP|required",
|
2017-11-23 15:05:46 +08:00
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "ExternalIP,e",
|
|
|
|
Value:"",
|
|
|
|
Usage: "ExternalIP",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "RootPass,p",
|
|
|
|
Value:"",
|
|
|
|
Usage: "RootPass",
|
|
|
|
},
|
|
|
|
cli.StringSliceFlag{
|
|
|
|
Name: "Role,r",
|
|
|
|
Usage: "Role|required",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
var node model.APIHostNode
|
|
|
|
if c.IsSet("Role"){
|
|
|
|
node.Role=c.StringSlice("Role")
|
|
|
|
node.InternalIP=c.String("InternalIP")
|
|
|
|
node.HostName=c.String("HostName")
|
|
|
|
node.ExternalIP=c.String("ExternalIP")
|
|
|
|
node.RootPass=c.String("RootPass")
|
|
|
|
clients.NodeClient.Nodes().Add(&node)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.New("role must not null")
|
|
|
|
},
|
|
|
|
},
|
2017-11-22 18:46:17 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
2017-11-10 15:00:52 +08:00
|
|
|
|
|
|
|
func NewCmdNodeRes() cli.Command {
|
|
|
|
c:=cli.Command{
|
|
|
|
Name: "noderes",
|
|
|
|
Usage: "获取计算节点资源信息 grctl noderes",
|
|
|
|
Action: func(c *cli.Context) error {
|
|
|
|
Common(c)
|
|
|
|
return getNodeWithResource(c)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
func getNodeWithResource(c *cli.Context) error {
|
|
|
|
ns, err :=clients.K8SClient.Core().Nodes().List(metav1.ListOptions{})
|
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("获取节点列表失败,details: %s",err.Error())
|
|
|
|
return err
|
|
|
|
}
|
2017-11-20 17:29:39 +08:00
|
|
|
|
|
|
|
|
2017-11-10 15:00:52 +08:00
|
|
|
table := termtables.CreateTable()
|
|
|
|
table.AddHeaders("NodeName", "Version", "CapCPU(核)", "AllocatableCPU(核)","UsedCPU(核)", "CapMemory(M)","AllocatableMemory(M)","UsedMemory(M)")
|
|
|
|
for _,v:=range ns.Items {
|
2017-11-20 17:29:39 +08:00
|
|
|
|
|
|
|
podList, err := clients.K8SClient.Core().Pods(metav1.NamespaceAll).List(metav1.ListOptions{FieldSelector: fields.SelectorFromSet(fields.Set{"spec.nodeName": v.Name}).String()})
|
|
|
|
if err != nil {
|
|
|
|
|
|
|
|
}
|
|
|
|
var cpuPerNode=0
|
|
|
|
memPerNode:=0
|
|
|
|
for _,p:=range podList.Items{
|
|
|
|
status:=string(p.Status.Phase)
|
|
|
|
|
|
|
|
if status!="Running" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
memPerPod:=0
|
|
|
|
|
|
|
|
memPerPod+=int(p.Spec.Containers[0].Resources.Requests.Memory().Value())
|
|
|
|
cpuOfPod:=p.Spec.Containers[0].Resources.Requests.Cpu().String()
|
|
|
|
if strings.Contains(cpuOfPod,"m") {
|
|
|
|
cpuOfPod=strings.Replace(cpuOfPod,"m","",-1)
|
|
|
|
}
|
|
|
|
cpuI,_:=strconv.Atoi(cpuOfPod)
|
|
|
|
cpuPerNode+=cpuI
|
|
|
|
memPerNode+=memPerPod
|
|
|
|
}
|
2017-11-10 15:00:52 +08:00
|
|
|
capCPU:=v.Status.Capacity.Cpu().Value()
|
|
|
|
capMem:=v.Status.Capacity.Memory().Value()
|
|
|
|
allocCPU:=v.Status.Allocatable.Cpu().Value()
|
|
|
|
allocMem:=v.Status.Allocatable.Memory().Value()
|
2017-11-20 17:29:39 +08:00
|
|
|
table.AddRow(v.Name,v.Status.NodeInfo.KubeletVersion,capCPU,allocCPU,float32(cpuPerNode)/1000,capMem/1024/1024,allocMem/1024/1024,memPerNode/1024/1024)
|
2017-11-10 15:00:52 +08:00
|
|
|
}
|
|
|
|
fmt.Println(table.Render())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getNode(c *cli.Context) error {
|
|
|
|
ns, err :=clients.K8SClient.Core().Nodes().List(metav1.ListOptions{})
|
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("获取节点列表失败,details: %s",err.Error())
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
table := termtables.CreateTable()
|
|
|
|
table.AddHeaders("Name", "Status", "Namespace","Unschedulable", "KubeletVersion","Labels")
|
|
|
|
|
|
|
|
for _,v:=range ns.Items{
|
|
|
|
cs:=v.Status.Conditions
|
|
|
|
status:="unknown"
|
|
|
|
for _,cv:=range cs{
|
2017-11-13 10:26:03 +08:00
|
|
|
status=string(cv.Status)
|
|
|
|
if strings.Contains(status,"rue"){
|
2017-11-10 15:00:52 +08:00
|
|
|
status=string(cv.Type)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m:=v.Labels
|
|
|
|
labels:=""
|
|
|
|
for k:=range m {
|
|
|
|
labels+=k
|
|
|
|
labels+=" "
|
|
|
|
}
|
|
|
|
table.AddRow(v.Name, status,v.Namespace,v.Spec.Unschedulable, v.Status.NodeInfo.KubeletVersion,labels)
|
|
|
|
}
|
|
|
|
fmt.Println(table.Render())
|
|
|
|
return nil
|
|
|
|
}
|