This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathhealth.go
112 lines (90 loc) · 2.93 KB
/
health.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright 2020 The Lokomotive 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.
package cmd
import (
"fmt"
"os"
"text/tabwriter"
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/kinvolk/lokomotive/pkg/k8sutil"
"github.com/kinvolk/lokomotive/pkg/lokomotive"
)
var healthCmd = &cobra.Command{
Use: "health",
Short: "Get the health of a cluster",
Run: runHealth,
PersistentPreRunE: doesKubeconfigExist,
}
func init() {
RootCmd.AddCommand(healthCmd)
}
func runHealth(cmd *cobra.Command, args []string) {
contextLogger := log.WithFields(log.Fields{
"command": "lokoctl health",
"args": args,
})
kubeconfig, err := getKubeconfig()
if err != nil {
contextLogger.Fatalf("Error in finding kubeconfig file: %s", err)
}
client, err := k8sutil.NewClientset(kubeconfig)
if err != nil {
contextLogger.Fatalf("Error in creating setting up Kubernetes client: %q", err)
}
p, diags := getConfiguredPlatform()
if diags.HasErrors() {
for _, diagnostic := range diags {
contextLogger.Error(diagnostic.Error())
}
contextLogger.Fatal("Errors found while loading cluster configuration")
}
if p == nil {
contextLogger.Fatal("No cluster configured")
}
cluster, err := lokomotive.NewCluster(client, p.Meta().ExpectedNodes)
if err != nil {
contextLogger.Fatalf("Error in creating new Lokomotive cluster: %q", err)
}
ns, err := cluster.GetNodeStatus()
if err != nil {
contextLogger.Fatalf("Error getting node status: %q", err)
}
ns.PrettyPrint()
if !ns.Ready() {
contextLogger.Fatalf("The cluster is not completely ready.")
}
components, err := cluster.Health()
if err != nil {
contextLogger.Fatalf("Error in getting Lokomotive cluster health: %q", err)
}
w := tabwriter.NewWriter(os.Stdout, 0, 0, 4, ' ', 0)
// Print the header.
fmt.Fprintln(w, "Name\tStatus\tMessage\tError\t")
// An empty line between header and the body.
fmt.Fprintln(w, "\t\t\t\t")
for _, component := range components {
// The client-go library defines only one `ComponenetConditionType` at the moment,
// which is `ComponentHealthy`. However, iterating over the list keeps this from
// breaking in case client-go adds another `ComponentConditionType`.
for _, condition := range component.Conditions {
line := fmt.Sprintf(
"%s\t%s\t%s\t%s\t",
component.Name, condition.Status, condition.Message, condition.Error,
)
fmt.Fprintln(w, line)
}
w.Flush()
}
}