// SPDX-License-Identifier: Apache-2.0 // Copyright Authors of K9s package render import ( "errors" "fmt" "sort" "strconv" "strings" "github.com/derailed/k9s/internal/client" "github.com/derailed/k9s/internal/model1" "github.com/derailed/tview" v1 "k8s.io/api/core/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" mv1beta1 "k8s.io/metrics/pkg/apis/metrics/v1beta1" ) const ( labelNodeRolePrefix = "node-role.kubernetes.io/" labelNodeRoleSuffix = "kubernetes.io/role" ) // Node renders a K8s Node to screen. type Node struct { Base } // Header returns a header row. func (Node) Header(string) model1.Header { return model1.Header{ model1.HeaderColumn{Name: "NAME"}, model1.HeaderColumn{Name: "STATUS"}, model1.HeaderColumn{Name: "ROLE"}, model1.HeaderColumn{Name: "ARCH", Wide: true}, model1.HeaderColumn{Name: "TAINTS"}, model1.HeaderColumn{Name: "VERSION"}, model1.HeaderColumn{Name: "OS-IMAGE", Wide: true}, model1.HeaderColumn{Name: "KERNEL", Wide: true}, model1.HeaderColumn{Name: "INTERNAL-IP", Wide: true}, model1.HeaderColumn{Name: "EXTERNAL-IP", Wide: true}, model1.HeaderColumn{Name: "PODS", Align: tview.AlignRight}, model1.HeaderColumn{Name: "CPU", Align: tview.AlignRight, MX: true}, model1.HeaderColumn{Name: "MEM", Align: tview.AlignRight, MX: true}, model1.HeaderColumn{Name: "%CPU", Align: tview.AlignRight, MX: true}, model1.HeaderColumn{Name: "%MEM", Align: tview.AlignRight, MX: true}, model1.HeaderColumn{Name: "CPU/A", Align: tview.AlignRight, MX: true}, model1.HeaderColumn{Name: "MEM/A", Align: tview.AlignRight, MX: true}, model1.HeaderColumn{Name: "LABELS", Wide: true}, model1.HeaderColumn{Name: "VALID", Wide: true}, model1.HeaderColumn{Name: "AGE", Time: true}, } } // Render renders a K8s resource to screen. func (n Node) Render(o interface{}, ns string, r *model1.Row) error { oo, ok := o.(*NodeWithMetrics) if !ok { return fmt.Errorf("expected *NodeAndMetrics, but got %T", o) } meta, ok := oo.Raw.Object["metadata"].(map[string]interface{}) if !ok { return fmt.Errorf("unable to extract meta") } na := extractMetaField(meta, "name") var no v1.Node err := runtime.DefaultUnstructuredConverter.FromUnstructured(oo.Raw.Object, &no) if err != nil { return err } iIP, eIP := getIPs(no.Status.Addresses) iIP, eIP = missing(iIP), missing(eIP) c, a := gatherNodeMX(&no, oo.MX) statuses := make(sort.StringSlice, 10) status(no.Status.Conditions, no.Spec.Unschedulable, statuses) sort.Sort(statuses) roles := make(sort.StringSlice, 10) nodeRoles(&no, roles) sort.Sort(roles) podCount := strconv.Itoa(oo.PodCount) if pc := oo.PodCount; pc == -1 { podCount = NAValue } r.ID = client.FQN("", na) r.Fields = model1.Fields{ no.Name, join(statuses, ","), join(roles, ","), no.Status.NodeInfo.Architecture, strconv.Itoa(len(no.Spec.Taints)), no.Status.NodeInfo.KubeletVersion, no.Status.NodeInfo.OSImage, no.Status.NodeInfo.KernelVersion, iIP, eIP, podCount, toMc(c.cpu), toMi(c.mem), client.ToPercentageStr(c.cpu, a.cpu), client.ToPercentageStr(c.mem, a.mem), toMc(a.cpu), toMi(a.mem), mapToStr(no.Labels), AsStatus(n.diagnose(statuses)), ToAge(no.GetCreationTimestamp()), } return nil } func (Node) diagnose(ss []string) error { if len(ss) == 0 { return nil } var ready bool for _, s := range ss { if s == "" { continue } if s == "SchedulingDisabled" { return errors.New("node is cordoned") } if s == "Ready" { ready = true } } if !ready { return errors.New("node is not ready") } return nil } // ---------------------------------------------------------------------------- // Helpers... // NodeWithMetrics represents a node with its associated metrics. type NodeWithMetrics struct { Raw *unstructured.Unstructured MX *mv1beta1.NodeMetrics PodCount int } // GetObjectKind returns a schema object. func (n *NodeWithMetrics) GetObjectKind() schema.ObjectKind { return nil } // DeepCopyObject returns a container copy. func (n *NodeWithMetrics) DeepCopyObject() runtime.Object { return n } type metric struct { cpu, mem int64 lcpu, lmem int64 } func gatherNodeMX(no *v1.Node, mx *mv1beta1.NodeMetrics) (c, a metric) { a.cpu, a.mem = no.Status.Allocatable.Cpu().MilliValue(), no.Status.Allocatable.Memory().Value() if mx != nil { c.cpu, c.mem = mx.Usage.Cpu().MilliValue(), mx.Usage.Memory().Value() } return } func nodeRoles(node *v1.Node, res []string) { index := 0 for k, v := range node.Labels { switch { case strings.HasPrefix(k, labelNodeRolePrefix): if role := strings.TrimPrefix(k, labelNodeRolePrefix); len(role) > 0 { res[index] = role index++ } case strings.HasSuffix(k, labelNodeRoleSuffix) && v != "": res[index] = v index++ } if index >= len(res) { break } } if empty(res) { res[index] = MissingValue } } func getIPs(addrs []v1.NodeAddress) (iIP, eIP string) { for _, a := range addrs { // nolint:exhaustive switch a.Type { case v1.NodeExternalIP: eIP = a.Address case v1.NodeInternalIP: iIP = a.Address } } return } func status(conds []v1.NodeCondition, exempt bool, res []string) { var index int conditions := make(map[v1.NodeConditionType]*v1.NodeCondition, len(conds)) for n := range conds { cond := conds[n] conditions[cond.Type] = &cond } validConditions := []v1.NodeConditionType{v1.NodeReady} for _, validCondition := range validConditions { condition, ok := conditions[validCondition] if !ok { continue } neg := "" if condition.Status != v1.ConditionTrue { neg = "Not" } res[index] = neg + string(condition.Type) index++ } if len(res) == 0 { res[index] = "Unknown" index++ } if exempt { res[index] = "SchedulingDisabled" } } func empty(s []string) bool { for _, v := range s { if len(v) != 0 { return false } } return true }