Skip to content

Commit

Permalink
Added list node functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
juanfont committed May 1, 2021
1 parent 68c21fa commit 404fee8
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions cmd/headscale/cli/nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,32 @@ var RegisterCmd = &cobra.Command{
},
}

var ListNodesCmd = &cobra.Command{
Use: "list",
Short: "List the nodes in a given namespace",
Run: func(cmd *cobra.Command, args []string) {
n, err := cmd.Flags().GetString("namespace")
if err != nil {
log.Fatalf("Error getting namespace: %s", err)
}

h, err := getHeadscaleApp()
if err != nil {
log.Fatalf("Error initializing: %s", err)
}
machines, err := h.ListMachinesInNamespace(n)
if err != nil {
log.Fatalf("Error getting nodes: %s", err)
}

fmt.Printf("name\tlast seen")
for _, m := range *machines {
fmt.Printf("%s\t%s\n", m.Name, m.LastSeen.Format("2006-01-02 15:04:05"))
}

},
}

var NodeCmd = &cobra.Command{
Use: "node",
Short: "Manage the nodes of Headscale",
Expand Down

0 comments on commit 404fee8

Please sign in to comment.