1 Star 0 Fork 0

ryancartoon / sensu-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
list.go 2.06 KB
一键复制 编辑 原始数据 按行查看 历史
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)
}
1
https://gitee.com/ryancartoon/sensu-go.git
git@gitee.com:ryancartoon/sensu-go.git
ryancartoon
sensu-go
sensu-go
v5.10.1

搜索帮助