forked from jenkins-x/jx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_devpod.go
101 lines (83 loc) · 1.96 KB
/
get_devpod.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
package cmd
import (
"io"
"os/user"
"time"
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
"github.com/jenkins-x/jx/pkg/kube"
)
// GetDevPodOptions the command line options
type GetDevPodOptions struct {
GetOptions
}
var (
getDevPodLong = templates.LongDesc(`
Display the available DevPods
For more documentation see: [https://jenkins-x.io/developing/devpods/](https://jenkins-x.io/developing/devpods/)
`)
getDevPodExample = templates.Examples(`
# List all the possible DevPods
jx get devPod
`)
)
// NewCmdGetDevPod creates the command
func NewCmdGetDevPod(f Factory, out io.Writer, errOut io.Writer) *cobra.Command {
options := &GetDevPodOptions{
GetOptions: GetOptions{
CommonOptions: CommonOptions{
Factory: f,
Out: out,
Err: errOut,
},
},
}
cmd := &cobra.Command{
Use: "devpod [flags]",
Short: "Lists the DevPods",
Long: getDevPodLong,
Example: getDevPodExample,
Aliases: []string{"buildpod", "buildpods", "devpods"},
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
return cmd
}
// Run implements this command
func (o *GetDevPodOptions) Run() error {
client, curNs, err := o.KubeClient()
if err != nil {
return err
}
ns, _, err := kube.GetDevNamespace(client, curNs)
if err != nil {
return err
}
u, err := user.Current()
if err != nil {
return err
}
names, m, err := kube.GetDevPodNames(client, ns, u.Username)
table := o.CreateTable()
table.AddRow("NAME", "POD TEMPLATE", "AGE", "STATUS")
for _, k := range names {
pod := m[k]
if pod != nil {
podTemplate := ""
status := kube.PodStatus(pod)
labels := pod.Labels
d := time.Now().Sub(pod.CreationTimestamp.Time).Round(time.Second)
age := d.String()
if labels != nil {
podTemplate = labels[kube.LabelPodTemplate]
}
table.AddRow(k, podTemplate, age, status)
}
}
table.Render()
return nil
}