nodes.go 3.5 KB
Newer Older
J
jeff 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*

 Copyright 2019 The KubeSphere Authors.

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

     http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.

*/
Z
zryfish 已提交
18
package node
J
jeff 已提交
19 20

import (
21
	"fmt"
Z
zryfish 已提交
22 23 24
	"k8s.io/client-go/informers"
	"kubesphere.io/kubesphere/pkg/models/resources/v1alpha2"

J
jeff 已提交
25 26
	"k8s.io/api/core/v1"
	"k8s.io/apimachinery/pkg/labels"
H
hongming 已提交
27 28
	"kubesphere.io/kubesphere/pkg/server/params"
	"sort"
J
jeff 已提交
29 30
)

Z
zryfish 已提交
31 32 33 34 35
const (
	nodeConfigOK     v1.NodeConditionType = "ConfigOK"
	nodeKubeletReady v1.NodeConditionType = "KubeletReady"
)

J
jeff 已提交
36
type nodeSearcher struct {
Z
zryfish 已提交
37 38 39 40 41
	informers informers.SharedInformerFactory
}

func NewNodeSearcher(informers informers.SharedInformerFactory) v1alpha2.Interface {
	return &nodeSearcher{informers: informers}
J
jeff 已提交
42 43
}

Z
zryfish 已提交
44 45
func (s *nodeSearcher) Get(_, name string) (interface{}, error) {
	return s.informers.Core().V1().Nodes().Lister().Get(name)
H
hongming 已提交
46 47
}

H
hongming 已提交
48 49
func getNodeStatus(node *v1.Node) string {
	if node.Spec.Unschedulable {
Z
zryfish 已提交
50
		return v1alpha2.StatusUnschedulable
H
hongming 已提交
51 52
	}
	for _, condition := range node.Status.Conditions {
Z
zryfish 已提交
53 54
		if isUnhealthyStatus(condition) {
			return v1alpha2.StatusWarning
H
hongming 已提交
55 56 57
		}
	}

Z
zryfish 已提交
58
	return v1alpha2.StatusRunning
H
hongming 已提交
59 60
}

61 62 63 64 65
var expectedConditions = map[v1.NodeConditionType]v1.ConditionStatus{
	v1.NodeMemoryPressure:     v1.ConditionFalse,
	v1.NodeDiskPressure:       v1.ConditionFalse,
	v1.NodePIDPressure:        v1.ConditionFalse,
	v1.NodeNetworkUnavailable: v1.ConditionFalse,
Z
zryfish 已提交
66 67
	nodeConfigOK:              v1.ConditionTrue,
	nodeKubeletReady:          v1.ConditionTrue,
68
	v1.NodeReady:              v1.ConditionTrue,
H
hongming 已提交
69 70
}

Z
zryfish 已提交
71
func isUnhealthyStatus(condition v1.NodeCondition) bool {
H
hongming 已提交
72 73 74 75 76 77 78
	expectedStatus := expectedConditions[condition.Type]
	if expectedStatus != "" && condition.Status != expectedStatus {
		return true
	}
	return false
}

J
jeff 已提交
79 80 81
func (*nodeSearcher) match(match map[string]string, item *v1.Node) bool {
	for k, v := range match {
		switch k {
Z
zryfish 已提交
82
		case v1alpha2.Role:
83 84 85
			labelKey := fmt.Sprintf("node-role.kubernetes.io/%s", v)
			if _, ok := item.Labels[labelKey]; !ok {
				return false
J
jeff 已提交
86
			}
Z
zryfish 已提交
87
		case v1alpha2.Status:
H
hongming 已提交
88 89 90
			if getNodeStatus(item) != v {
				return false
			}
J
jeff 已提交
91
		default:
H
hongming 已提交
92
			if !v1alpha2.ObjectMetaExactlyMath(k, v, item.ObjectMeta) {
H
hongming 已提交
93 94
				return false
			}
J
jeff 已提交
95 96 97 98 99 100 101
		}
	}
	return true
}

func (*nodeSearcher) fuzzy(fuzzy map[string]string, item *v1.Node) bool {
	for k, v := range fuzzy {
H
hongming 已提交
102
		if !v1alpha2.ObjectMetaFuzzyMath(k, v, item.ObjectMeta) {
J
jeff 已提交
103 104 105 106 107 108
			return false
		}
	}
	return true
}

Z
zryfish 已提交
109 110
func (s *nodeSearcher) Search(namespace string, conditions *params.Conditions, orderBy string, reverse bool) ([]interface{}, error) {
	nodes, err := s.informers.Core().V1().Nodes().Lister().List(labels.Everything())
J
jeff 已提交
111 112 113 114 115 116 117

	if err != nil {
		return nil, err
	}

	result := make([]*v1.Node, 0)

H
hongming 已提交
118
	if len(conditions.Match) == 0 && len(conditions.Fuzzy) == 0 {
J
jeff 已提交
119 120 121
		result = nodes
	} else {
		for _, item := range nodes {
H
hongming 已提交
122
			if s.match(conditions.Match, item) && s.fuzzy(conditions.Fuzzy, item) {
J
jeff 已提交
123 124 125 126 127 128
				result = append(result, item)
			}
		}
	}
	sort.Slice(result, func(i, j int) bool {
		if reverse {
H
hongming 已提交
129
			i, j = j, i
J
jeff 已提交
130
		}
H
hongming 已提交
131
		return v1alpha2.ObjectMetaCompare(result[i].ObjectMeta, result[j].ObjectMeta, orderBy)
J
jeff 已提交
132 133 134 135 136 137 138 139
	})

	r := make([]interface{}, 0)
	for _, i := range result {
		r = append(r, i)
	}
	return r, nil
}