-
Notifications
You must be signed in to change notification settings - Fork 202
/
list.go
55 lines (48 loc) · 1.27 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
50
51
52
53
54
55
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
// ------------------------------------------------------------
package kubernetes
import (
"github.com/dapr/cli/pkg/age"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
// ListOutput represents the application ID, application port and creation time.
type ListOutput struct {
AppID string `csv:"APP ID"`
AppPort string `csv:"APP PORT"`
Age string `csv:"AGE"`
Created string `csv:"CREATED"`
}
// List outputs all the applications.
func List() ([]ListOutput, error) {
client, err := Client()
if err != nil {
return nil, err
}
podList, err := ListPods(client, meta_v1.NamespaceAll, nil)
if err != nil {
return nil, err
}
l := []ListOutput{}
for _, p := range podList.Items {
for _, c := range p.Spec.Containers {
if c.Name == "daprd" {
lo := ListOutput{}
for i, a := range c.Args {
if a == "--app-port" {
port := c.Args[i+1]
lo.AppPort = port
} else if a == "--app-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
}