mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-06 21:24:16 +08:00
74 lines
2.9 KiB
Go
74 lines
2.9 KiB
Go
package node
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/gravitl/netmaker/cli/functions"
|
|
"github.com/gravitl/netmaker/models"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var nodeUpdateCmd = &cobra.Command{
|
|
Use: "update [NETWORK NAME] [NODE ID]",
|
|
Args: cobra.ExactArgs(2),
|
|
Short: "Update a Node",
|
|
Long: `Update a Node`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
var (
|
|
node = &models.ApiNode{}
|
|
networkName = args[0]
|
|
nodeID = args[1]
|
|
)
|
|
if nodeDefinitionFilePath != "" {
|
|
content, err := os.ReadFile(nodeDefinitionFilePath)
|
|
if err != nil {
|
|
log.Fatal("Error when opening file: ", err)
|
|
}
|
|
if err := json.Unmarshal(content, node); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
} else {
|
|
node.Address = address
|
|
node.Address6 = address6
|
|
node.LocalAddress = localAddress
|
|
node.PostUp = postUp
|
|
node.PostDown = postDown
|
|
node.PersistentKeepalive = int32(keepAlive)
|
|
if relayAddrs != "" {
|
|
node.RelayAddrs = strings.Split(relayAddrs, ",")
|
|
}
|
|
if egressGatewayRanges != "" {
|
|
node.EgressGatewayRanges = strings.Split(egressGatewayRanges, ",")
|
|
}
|
|
node.ExpirationDateTime = int64(expirationDateTime)
|
|
if defaultACL {
|
|
node.DefaultACL = "yes"
|
|
}
|
|
node.DNSOn = dnsOn
|
|
node.Connected = !disconnect
|
|
}
|
|
node.HostID = functions.GetNodeByID(networkName, nodeID).Host.ID.String()
|
|
functions.PrettyPrint(functions.UpdateNode(networkName, nodeID, node))
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
nodeUpdateCmd.Flags().StringVar(&nodeDefinitionFilePath, "file", "", "Filepath of updated node definition in JSON")
|
|
nodeUpdateCmd.Flags().StringVar(&address, "ipv4_addr", "", "IPv4 address of the node")
|
|
nodeUpdateCmd.Flags().StringVar(&address6, "ipv6_addr", "", "IPv6 address of the node")
|
|
nodeUpdateCmd.Flags().StringVar(&localAddress, "local_addr", "", "Locally reachable address of the node")
|
|
nodeUpdateCmd.Flags().StringVar(&name, "name", "", "Node name")
|
|
nodeUpdateCmd.Flags().StringVar(&postUp, "post_up", "", "Commands to run after node is up `;` separated")
|
|
nodeUpdateCmd.Flags().StringVar(&postDown, "post_down", "", "Commands to run after node is down `;` separated")
|
|
nodeUpdateCmd.Flags().IntVar(&keepAlive, "keep_alive", 0, "Interval in which packets are sent to keep connections open with peers")
|
|
nodeUpdateCmd.Flags().StringVar(&relayAddrs, "relay_addrs", "", "Addresses for relaying connections if node acts as a relay")
|
|
nodeUpdateCmd.Flags().StringVar(&egressGatewayRanges, "egress_addrs", "", "Addresses for egressing traffic if node acts as an egress")
|
|
nodeUpdateCmd.Flags().IntVar(&expirationDateTime, "expiry", 0, "UNIX timestamp after which node will lose access to the network")
|
|
nodeUpdateCmd.Flags().BoolVar(&defaultACL, "acl", false, "Enable default ACL ?")
|
|
nodeUpdateCmd.Flags().BoolVar(&dnsOn, "dns", false, "Setup DNS entries for peers locally ?")
|
|
nodeUpdateCmd.Flags().BoolVar(&disconnect, "disconnect", false, "Disconnect from the network ?")
|
|
rootCmd.AddCommand(nodeUpdateCmd)
|
|
}
|