mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-04 12:47:36 +08:00
393 lines
12 KiB
Go
393 lines
12 KiB
Go
// 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 client
|
|
|
|
import (
|
|
"strings"
|
|
"time"
|
|
|
|
"k8s.io/client-go/pkg/api/v1"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
client "github.com/coreos/etcd/clientv3"
|
|
"github.com/coreos/etcd/mvcc/mvccpb"
|
|
conf "github.com/goodrain/rainbond/cmd/node/option"
|
|
"github.com/goodrain/rainbond/node/core/store"
|
|
"github.com/pquerna/ffjson/ffjson"
|
|
)
|
|
|
|
//APIHostNode api host node
|
|
type APIHostNode struct {
|
|
ID string `json:"uuid" validate:"uuid"`
|
|
HostName string `json:"host_name" validate:"host_name"`
|
|
InternalIP string `json:"internal_ip" validate:"internal_ip|ip"`
|
|
ExternalIP string `json:"external_ip" validate:"external_ip|ip"`
|
|
RootPass string `json:"root_pass,omitempty"`
|
|
Privatekey string `json:"private_key,omitempty"`
|
|
Role string `json:"role" validate:"role|required"`
|
|
Labels map[string]string `json:"labels"`
|
|
}
|
|
|
|
//Clone Clone
|
|
func (a APIHostNode) Clone() *HostNode {
|
|
hn := &HostNode{
|
|
ID: a.ID,
|
|
HostName: a.HostName,
|
|
InternalIP: a.InternalIP,
|
|
ExternalIP: a.ExternalIP,
|
|
RootPass: a.RootPass,
|
|
Role: []string{a.Role},
|
|
Labels: a.Labels,
|
|
NodeStatus: &NodeStatus{},
|
|
}
|
|
return hn
|
|
}
|
|
|
|
//HostNode rainbond node entity
|
|
type HostNode struct {
|
|
ID string `json:"uuid"`
|
|
HostName string `json:"host_name"`
|
|
CreateTime time.Time `json:"create_time"`
|
|
InternalIP string `json:"internal_ip"`
|
|
ExternalIP string `json:"external_ip"`
|
|
RootPass string `json:"root_pass,omitempty"`
|
|
KeyPath string `json:"key_path,omitempty"` //管理节点key文件路径
|
|
AvailableMemory int64 `json:"available_memory"`
|
|
AvailableCPU int64 `json:"available_cpu"`
|
|
Mode string `json:"mode"`
|
|
Role HostRule `json:"role"` //节点属性 compute manage storage
|
|
Status string `json:"status"` //节点状态 create,init,running,stop,delete
|
|
Labels map[string]string `json:"labels"` //节点标签 内置标签+用户自定义标签
|
|
Unschedulable bool `json:"unschedulable"` //不可调度
|
|
NodeStatus *NodeStatus `json:"node_status,omitempty"`
|
|
ClusterNode
|
|
}
|
|
|
|
//Resource 资源
|
|
type Resource struct {
|
|
CpuR int `json:"cpu"`
|
|
MemR int `json:"mem"`
|
|
}
|
|
type NodePodResource struct {
|
|
AllocatedResources `json:"allocatedresources"`
|
|
Resource `json:"allocatable"`
|
|
}
|
|
type AllocatedResources struct {
|
|
CPURequests int64
|
|
CPULimits int64
|
|
MemoryRequests int64
|
|
MemoryLimits int64
|
|
MemoryRequestsR string
|
|
MemoryLimitsR string
|
|
CPURequestsR string
|
|
CPULimitsR string
|
|
}
|
|
|
|
//NodeStatus node status
|
|
type NodeStatus struct {
|
|
Status string `json:"status"` //installed running offline unknown
|
|
Conditions []NodeCondition `json:"conditions,omitempty"`
|
|
NodeInfo NodeSystemInfo `json:"nodeInfo,omitempty" protobuf:"bytes,7,opt,name=nodeInfo"`
|
|
}
|
|
|
|
//UpdateK8sNodeStatus update rainbond node status by k8s node
|
|
func (n *HostNode) UpdateK8sNodeStatus(k8sNode v1.Node) {
|
|
status := k8sNode.Status
|
|
n.UpdataK8sCondition(status.Conditions)
|
|
n.NodeStatus.NodeInfo = NodeSystemInfo{
|
|
MachineID: status.NodeInfo.MachineID,
|
|
SystemUUID: status.NodeInfo.SystemUUID,
|
|
BootID: status.NodeInfo.BootID,
|
|
KernelVersion: status.NodeInfo.KernelVersion,
|
|
OSImage: status.NodeInfo.OSImage,
|
|
OperatingSystem: status.NodeInfo.OperatingSystem,
|
|
ContainerRuntimeVersion: status.NodeInfo.ContainerRuntimeVersion,
|
|
Architecture: status.NodeInfo.Architecture,
|
|
}
|
|
n.Unschedulable = k8sNode.Spec.Unschedulable
|
|
|
|
if n.Unschedulable {
|
|
n.Status = "unschedulable"
|
|
} else {
|
|
n.Status = "running"
|
|
}
|
|
}
|
|
|
|
// NodeSystemInfo is a set of ids/uuids to uniquely identify the node.
|
|
type NodeSystemInfo struct {
|
|
// MachineID reported by the node. For unique machine identification
|
|
// in the cluster this field is preferred. Learn more from man(5)
|
|
// machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html
|
|
MachineID string `json:"machineID"`
|
|
// SystemUUID reported by the node. For unique machine identification
|
|
// MachineID is preferred. This field is specific to Red Hat hosts
|
|
// https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html
|
|
SystemUUID string `json:"systemUUID"`
|
|
// Boot ID reported by the node.
|
|
BootID string `json:"bootID" protobuf:"bytes,3,opt,name=bootID"`
|
|
// Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).
|
|
KernelVersion string `json:"kernelVersion" `
|
|
// OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).
|
|
OSImage string `json:"osImage"`
|
|
// ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).
|
|
ContainerRuntimeVersion string `json:"containerRuntimeVersion"`
|
|
// The Operating System reported by the node
|
|
OperatingSystem string `json:"operatingSystem"`
|
|
// The Architecture reported by the node
|
|
Architecture string `json:"architecture"`
|
|
|
|
MemorySize uint64 `json:"memorySize"`
|
|
}
|
|
|
|
//Decode decode node info
|
|
func (n *HostNode) Decode(data []byte) error {
|
|
if err := ffjson.Unmarshal(data, n); err != nil {
|
|
logrus.Error("decode node info error:", err.Error())
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type NodeList []*HostNode
|
|
|
|
func (list NodeList) Len() int {
|
|
return len(list)
|
|
}
|
|
|
|
func (list NodeList) Less(i, j int) bool {
|
|
if list[i].InternalIP < list[j].InternalIP {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
|
|
func (list NodeList) Swap(i, j int) {
|
|
var temp = list[i]
|
|
list[i] = list[j]
|
|
list[j] = temp
|
|
}
|
|
|
|
//GetNodeFromKV 从etcd解析node信息
|
|
func GetNodeFromKV(kv *mvccpb.KeyValue) *HostNode {
|
|
var node HostNode
|
|
if err := ffjson.Unmarshal(kv.Value, &node); err != nil {
|
|
logrus.Error("parse node info error:", err.Error())
|
|
return nil
|
|
}
|
|
return &node
|
|
}
|
|
|
|
//UpdataK8sCondition 更新k8s节点的状态到rainbond节点
|
|
func (n *HostNode) UpdataK8sCondition(conditions []v1.NodeCondition) {
|
|
for _, con := range conditions {
|
|
if NodeConditionType(con.Type) == "Ready" {
|
|
continue
|
|
}
|
|
rbcon := NodeCondition{
|
|
Type: NodeConditionType(con.Type),
|
|
Status: ConditionStatus(con.Status),
|
|
LastHeartbeatTime: con.LastHeartbeatTime.Time,
|
|
LastTransitionTime: con.LastTransitionTime.Time,
|
|
Reason: con.Reason,
|
|
Message: con.Message,
|
|
}
|
|
n.UpdataCondition(rbcon)
|
|
}
|
|
}
|
|
|
|
//DeleteCondition DeleteCondition
|
|
func (n *HostNode) DeleteCondition(types ...NodeConditionType) {
|
|
if n.NodeStatus == nil {
|
|
return
|
|
}
|
|
for _, t := range types {
|
|
for i, c := range n.NodeStatus.Conditions {
|
|
if c.Type.Compare(t) {
|
|
n.NodeStatus.Conditions = append(n.NodeStatus.Conditions[:i], n.NodeStatus.Conditions[i+1:]...)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//UpdataCondition 更新状态
|
|
func (n *HostNode) UpdataCondition(conditions ...NodeCondition) {
|
|
if n.NodeStatus == nil {
|
|
n.NodeStatus = &NodeStatus{}
|
|
}
|
|
for _, newcon := range conditions {
|
|
var update bool
|
|
if n.NodeStatus.Conditions != nil {
|
|
for i, con := range n.NodeStatus.Conditions {
|
|
if con.Type.Compare(newcon.Type) {
|
|
n.NodeStatus.Conditions[i] = newcon
|
|
update = true
|
|
break
|
|
}
|
|
}
|
|
}
|
|
if !update {
|
|
n.NodeStatus.Conditions = append(n.NodeStatus.Conditions, newcon)
|
|
}
|
|
}
|
|
}
|
|
|
|
func GetK8sReady(conditions []v1.NodeCondition) bool {
|
|
for _, con := range conditions {
|
|
if NodeConditionType(con.Type) == "Ready" {
|
|
if con.Status == "True" {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
//HostRule 节点角色
|
|
type HostRule []string
|
|
|
|
//ComputeNode 计算节点
|
|
var ComputeNode = "compute"
|
|
|
|
//ManageNode 管理节点
|
|
var ManageNode = "manage"
|
|
|
|
//StorageNode 存储节点
|
|
var StorageNode = "storage"
|
|
|
|
//LBNode 边缘负载均衡节点
|
|
var LBNode = "lb"
|
|
|
|
//HasRule 是否具有什么角色
|
|
func (h HostRule) HasRule(rule string) bool {
|
|
for _, v := range h {
|
|
if v == rule {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
func (h HostRule) String() string {
|
|
return strings.Join(h, ",")
|
|
}
|
|
|
|
//NodeConditionType NodeConditionType
|
|
type NodeConditionType string
|
|
|
|
// These are valid conditions of node.
|
|
const (
|
|
// NodeReady means this node is working
|
|
NodeReady NodeConditionType = "Ready"
|
|
// InstallNotReady means the installation task was not completed in this node.
|
|
InstallNotReady NodeConditionType = "InstallNotReady"
|
|
// NodeInit means node already install rainbond node and regist
|
|
NodeInit NodeConditionType = "NodeInit"
|
|
OutOfDisk NodeConditionType = "OutOfDisk"
|
|
MemoryPressure NodeConditionType = "MemoryPressure"
|
|
DiskPressure NodeConditionType = "DiskPressure"
|
|
)
|
|
|
|
//Compare 比较
|
|
func (nt NodeConditionType) Compare(ent NodeConditionType) bool {
|
|
return string(nt) == string(ent)
|
|
}
|
|
|
|
//ConditionStatus ConditionStatus
|
|
type ConditionStatus string
|
|
|
|
// These are valid condition statuses. "ConditionTrue" means a resource is in the condition.
|
|
// "ConditionFalse" means a resource is not in the condition. "ConditionUnknown" means kubernetes
|
|
// can't decide if a resource is in the condition or not. In the future, we could add other
|
|
// intermediate conditions, e.g. ConditionDegraded.
|
|
const (
|
|
ConditionTrue ConditionStatus = "True"
|
|
ConditionFalse ConditionStatus = "False"
|
|
ConditionUnknown ConditionStatus = "Unknown"
|
|
)
|
|
|
|
// NodeCondition contains condition information for a node.
|
|
type NodeCondition struct {
|
|
// Type of node condition.
|
|
Type NodeConditionType `json:"type" `
|
|
// Status of the condition, one of True, False, Unknown.
|
|
Status ConditionStatus `json:"status" `
|
|
// Last time we got an update on a given condition.
|
|
// +optional
|
|
LastHeartbeatTime time.Time `json:"lastHeartbeatTime,omitempty" `
|
|
// Last time the condition transit from one status to another.
|
|
// +optional
|
|
LastTransitionTime time.Time `json:"lastTransitionTime,omitempty" `
|
|
// (brief) reason for the condition's last transition.
|
|
// +optional
|
|
Reason string `json:"reason,omitempty"`
|
|
// Human readable message indicating details about last transition.
|
|
// +optional
|
|
Message string `json:"message,omitempty"`
|
|
}
|
|
|
|
// ClusterNode 集群节点实体
|
|
type ClusterNode struct {
|
|
PID string `json:"pid"` // 进程 pid
|
|
Version string `json:"version"`
|
|
UpTime time.Time `json:"up"` // 启动时间
|
|
DownTime time.Time `json:"down"` // 上次关闭时间
|
|
Alived bool `json:"alived"` // 是否可用
|
|
Connected bool `json:"connected"` // 当 Alived 为 true 时有效,表示心跳是否正常
|
|
}
|
|
|
|
//String string
|
|
func (h *HostNode) String() string {
|
|
res, _ := ffjson.Marshal(h)
|
|
return string(res)
|
|
}
|
|
|
|
//Put 节点上线更新
|
|
func (h *HostNode) Put(opts ...client.OpOption) (*client.PutResponse, error) {
|
|
return store.DefalutClient.Put(conf.Config.OnlineNodePath+"/"+h.ID, h.PID, opts...)
|
|
}
|
|
|
|
//Update 更新节点信息,由节点启动时调用
|
|
func (h *HostNode) Update() (*client.PutResponse, error) {
|
|
return store.DefalutClient.Put(conf.Config.NodePath+"/"+h.ID, h.String())
|
|
}
|
|
|
|
//DeleteNode 删除节点
|
|
func (h *HostNode) DeleteNode() (*client.DeleteResponse, error) {
|
|
return store.DefalutClient.Delete(conf.Config.NodePath + "/target/" + h.ID)
|
|
}
|
|
|
|
//Del 删除
|
|
func (h *HostNode) Del() (*client.DeleteResponse, error) {
|
|
return store.DefalutClient.Delete(conf.Config.OnlineNodePath + h.ID)
|
|
}
|
|
|
|
//GetNodes 获取节点
|
|
func GetNodes() (nodes []*HostNode, err error) {
|
|
return nil, nil
|
|
}
|
|
|
|
// Down 节点下线
|
|
func (h *HostNode) Down() {
|
|
h.Alived, h.DownTime = false, time.Now()
|
|
h.Update()
|
|
}
|