forked from sensu/sensu-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.go
84 lines (76 loc) · 2.06 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
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
package clusterrolebinding
import (
"io"
"strconv"
"github.com/sensu/sensu-go/cli"
"github.com/sensu/sensu-go/cli/commands/helpers"
"github.com/sensu/sensu-go/cli/elements/table"
"github.com/sensu/sensu-go/types"
"github.com/spf13/cobra"
)
// ListCommand defines a command to list cluster role bindings
func ListCommand(cli *cli.SensuCli) *cobra.Command {
cmd := &cobra.Command{
Use: "list",
Short: "list cluster role bindings",
SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error {
opts, err := helpers.ListOptionsFromFlags(cmd.Flags())
if err != nil {
return err
}
// Fetch role bindings from API
results, err := cli.Client.ListClusterRoleBindings(&opts)
if err != nil {
return err
}
// Print the results based on the user preferences
resources := []types.Resource{}
for i := range results {
resources = append(resources, &results[i])
}
return helpers.Print(cmd, cli.Config.Format(), printToTable, resources, results)
},
}
helpers.AddFormatFlag(cmd.Flags())
helpers.AddFieldSelectorFlag(cmd.Flags())
helpers.AddLabelSelectorFlag(cmd.Flags())
helpers.AddChunkSizeFlag(cmd.Flags())
return cmd
}
func printToTable(results interface{}, writer io.Writer) {
table := table.New([]*table.Column{
{
Title: "Name",
ColumnStyle: table.PrimaryTextStyle,
CellTransformer: func(data interface{}) string {
clusterRoleBinding, ok := data.(types.ClusterRoleBinding)
if !ok {
return cli.TypeError
}
return clusterRoleBinding.Name
},
},
{
Title: "Cluster Role",
CellTransformer: func(data interface{}) string {
clusterRoleBinding, ok := data.(types.ClusterRoleBinding)
if !ok {
return cli.TypeError
}
return clusterRoleBinding.RoleRef.Name
},
},
{
Title: "Subjects",
CellTransformer: func(data interface{}) string {
clusterRoleBinding, ok := data.(types.ClusterRoleBinding)
if !ok {
return cli.TypeError
}
return strconv.Itoa(len(clusterRoleBinding.Subjects))
},
},
})
table.Render(writer, results)
}