-
Notifications
You must be signed in to change notification settings - Fork 202
/
list.go
49 lines (43 loc) · 1.02 KB
/
list.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
package kubernetes
import (
"github.com/actionscore/cli/pkg/age"
core_v1 "k8s.io/api/core/v1"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
type ListOutput struct {
AppID string `csv:"APP ID"`
AppPort string `csv:"APP PORT"`
Age string `csv:"AGE"`
Created string `csv:"CREATED"`
}
func List() ([]ListOutput, error) {
client, err := Client()
if err != nil {
return nil, err
}
podList, err := client.CoreV1().Pods(core_v1.NamespaceAll).List(meta_v1.ListOptions{})
if err != nil {
return nil, err
}
l := []ListOutput{}
for _, p := range podList.Items {
for _, c := range p.Spec.Containers {
if c.Name == "actionsrt" {
lo := ListOutput{}
for i, a := range c.Args {
if a == "--app-port" {
port := c.Args[i+1]
lo.AppPort = port
} else if a == "--actions-id" {
id := c.Args[i+1]
lo.AppID = id
}
}
lo.Created = p.CreationTimestamp.Format("2006-01-02 15:04.05")
lo.Age = age.GetAge(p.CreationTimestamp.Time)
l = append(l, lo)
}
}
}
return l, nil
}