Every struct in a NodeConf with `lopt:"foo" set is now added as a command-line flag with the RecursiveCreateFlags call. For maps a struct with the key UNDEF is added so that it can be parsed out. As the flags for the command-line need variables which hold the values, for every map an element map[UNDEF] is added. When now calling the internal add, these map element can be filtered out and replace by the given name. (e.g., --netname) * rewrote node/profile add for recursive functions * rewrote node/profile set for recursive functions * rewrote node/profile list for recursive functions Signed-off-by: Christian Goll <cgoll@suse.com>
48 lines
1.6 KiB
Go
48 lines
1.6 KiB
Go
package list
|
|
|
|
import (
|
|
"github.com/hpcng/warewulf/internal/pkg/node"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
type variables struct {
|
|
showNet bool
|
|
showIpmi bool
|
|
showAll bool
|
|
showLong bool
|
|
showFullAll bool
|
|
}
|
|
|
|
func GetCommand() *cobra.Command {
|
|
vars := variables{}
|
|
baseCmd := &cobra.Command{
|
|
DisableFlagsInUseLine: true,
|
|
Use: "list [OPTIONS] [PATTERN]",
|
|
Short: "List nodes",
|
|
Long: "This command lists all configured nodes. Optionally, it will list only\n" +
|
|
"nodes matching a PATTERN.",
|
|
RunE: CobraRunE(&vars),
|
|
Aliases: []string{"ls"},
|
|
ValidArgsFunction: func(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
if len(args) != 0 {
|
|
return nil, cobra.ShellCompDirectiveNoFileComp
|
|
}
|
|
|
|
nodeDB, _ := node.New()
|
|
nodes, _ := nodeDB.FindAllNodes()
|
|
var node_names []string
|
|
for _, node := range nodes {
|
|
node_names = append(node_names, node.Id.Get())
|
|
}
|
|
return node_names, cobra.ShellCompDirectiveNoFileComp
|
|
},
|
|
}
|
|
baseCmd.PersistentFlags().BoolVarP(&vars.showNet, "net", "n", false, "Show node network configurations")
|
|
baseCmd.PersistentFlags().BoolVarP(&vars.showIpmi, "ipmi", "i", false, "Show node IPMI configurations")
|
|
baseCmd.PersistentFlags().BoolVarP(&vars.showAll, "all", "a", false, "Show all node configurations")
|
|
baseCmd.PersistentFlags().BoolVarP(&vars.showFullAll, "fullall", "A", false, "Show all node configurations inclusive empty entries")
|
|
baseCmd.PersistentFlags().BoolVarP(&vars.showLong, "long", "l", false, "Show long or wide format")
|
|
|
|
return baseCmd
|
|
}
|