nodes.go 3.5 KB
Newer Older
J
jeff 已提交
1
/*
H
hongming 已提交
2
Copyright 2019 The KubeSphere Authors.
J
jeff 已提交
3

H
hongming 已提交
4 5 6
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
J
jeff 已提交
7

H
hongming 已提交
8
    http://www.apache.org/licenses/LICENSE-2.0
J
jeff 已提交
9

H
hongming 已提交
10 11 12 13 14
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.
J
jeff 已提交
15
*/
H
hongming 已提交
16

Z
zryfish 已提交
17
package node
J
jeff 已提交
18 19

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

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

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

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

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

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

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

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

60 61 62 63 64
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 已提交
65 66
	nodeConfigOK:              v1.ConditionTrue,
	nodeKubeletReady:          v1.ConditionTrue,
67
	v1.NodeReady:              v1.ConditionTrue,
H
hongming 已提交
68 69
}

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

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

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

Z
zryfish 已提交
108 109
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 已提交
110 111 112 113 114 115 116

	if err != nil {
		return nil, err
	}

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

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

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