mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-10 09:02:30 +08:00
Minor output fix & README improvements
This commit is contained in:
parent
2733a34033
commit
fc13f74851
2 changed files with 9 additions and 3 deletions
|
@ -7,8 +7,9 @@ An open source implementation of the Tailscale coordination server.
|
|||
- [x] Basic functionality (nodes can communicate with each other)
|
||||
- [x] Node registration through the web flow
|
||||
- [x] Network changes are relied to the nodes
|
||||
- [x] ~~Multiuser~~ Namespace support
|
||||
- [ ] Share nodes between ~~users~~ namespaces
|
||||
- [ ] Node registration via pre-auth keys
|
||||
- [ ] (WIP) Multiuser support
|
||||
- [ ] ACLs
|
||||
- [ ] DNS
|
||||
|
||||
|
@ -16,7 +17,7 @@ An open source implementation of the Tailscale coordination server.
|
|||
|
||||
## Roadmap 🤷
|
||||
|
||||
Adding multiuser support seems doable. Rather than actual users, this multi-tenancy will probably look more like namespaces in Kubernetes - a logical partitioning of resources created with a CLI.
|
||||
Basic multiuser support (multinamespace, actually) is now implemented. No node sharing or ACLs between namespaces yet though...
|
||||
|
||||
Pre-auth keys should also be feasible.
|
||||
|
||||
|
|
|
@ -63,7 +63,12 @@ var registerCmd = &cobra.Command{
|
|||
if err != nil {
|
||||
log.Fatalf("Error initializing: %s", err)
|
||||
}
|
||||
h.RegisterMachine(args[0], args[1])
|
||||
err = h.RegisterMachine(args[0], args[1])
|
||||
if err != nil {
|
||||
fmt.Printf("Error: %s", err)
|
||||
return
|
||||
}
|
||||
fmt.Println("Ook.")
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue