mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
feat(dns): configure and store public IP when adding new machine
This commit is contained in:
+12
-2
@@ -204,9 +204,10 @@ func (cli *CLI) initRemoteMachine(
|
||||
return machineClient, nil
|
||||
}
|
||||
|
||||
// TODO:
|
||||
// AddMachine provisions a remote machine and adds it to the cluster. It returns a client to interact with the machine
|
||||
// which should be closed after use by the caller.
|
||||
func (cli *CLI) AddMachine(
|
||||
ctx context.Context, remoteMachine RemoteMachine, clusterName, machineName string,
|
||||
ctx context.Context, remoteMachine RemoteMachine, clusterName, machineName string, publicIP *netip.Addr,
|
||||
) (*client.Client, error) {
|
||||
c, err := cli.ConnectCluster(ctx, clusterName)
|
||||
if err != nil {
|
||||
@@ -256,6 +257,15 @@ func (cli *CLI) AddMachine(
|
||||
PublicKey: token.PublicKey,
|
||||
},
|
||||
}
|
||||
if publicIP != nil {
|
||||
if publicIP.IsValid() {
|
||||
addReq.PublicIp = pb.NewIP(*publicIP)
|
||||
} else if token.PublicIP.IsValid() {
|
||||
// Invalid or in other words zero IP means to use an automatically detected public IP from the token.
|
||||
addReq.PublicIp = pb.NewIP(token.PublicIP)
|
||||
}
|
||||
}
|
||||
|
||||
addResp, err := c.AddMachine(ctx, addReq)
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("add machine to cluster: %w", err)
|
||||
|
||||
@@ -37,5 +37,5 @@ func MachineToken(dataDir string) (machine.Token, error) {
|
||||
for i, ip := range ips {
|
||||
endpoints[i] = netip.AddrPortFrom(ip, network.WireGuardPort)
|
||||
}
|
||||
return machine.NewToken(state.Network.PublicKey, endpoints), nil
|
||||
return machine.NewToken(state.Network.PublicKey, publicIP, endpoints), nil
|
||||
}
|
||||
|
||||
@@ -538,9 +538,9 @@ func (m *Machine) InitCluster(ctx context.Context, req *pb.InitClusterRequest) (
|
||||
if err != nil {
|
||||
return nil, status.Errorf(codes.Internal, "list routable IPs: %v", err)
|
||||
}
|
||||
publicIP, err := network.GetPublicIP()
|
||||
publicIP, pubIPErr := network.GetPublicIP()
|
||||
// Ignore the error if failed to get the public IP using API services.
|
||||
if err == nil {
|
||||
if pubIPErr == nil {
|
||||
ips = append(ips, publicIP)
|
||||
}
|
||||
endpoints := make([]*pb.IPPort, len(ips))
|
||||
@@ -560,7 +560,7 @@ func (m *Machine) InitCluster(ctx context.Context, req *pb.InitClusterRequest) (
|
||||
}
|
||||
if req.GetPublicIp() != nil {
|
||||
addReq.PublicIp = req.GetPublicIp()
|
||||
} else if req.GetPublicIpAuto() {
|
||||
} else if req.GetPublicIpAuto() && pubIPErr == nil {
|
||||
addReq.PublicIp = pb.NewIP(publicIP)
|
||||
}
|
||||
|
||||
@@ -690,7 +690,7 @@ func (m *Machine) Token(_ context.Context, _ *emptypb.Empty) (*pb.TokenResponse,
|
||||
endpoints[i] = netip.AddrPortFrom(ip, network.WireGuardPort)
|
||||
}
|
||||
|
||||
token := NewToken(m.state.Network.PublicKey, endpoints)
|
||||
token := NewToken(m.state.Network.PublicKey, publicIP, endpoints)
|
||||
tokenStr, err := token.String()
|
||||
if err != nil {
|
||||
return nil, status.Error(codes.Internal, err.Error())
|
||||
|
||||
@@ -16,13 +16,15 @@ const (
|
||||
// Token represents the machine's token for joining a cluster.
|
||||
type Token struct {
|
||||
PublicKey secret.Secret
|
||||
PublicIP netip.Addr
|
||||
Endpoints []netip.AddrPort
|
||||
}
|
||||
|
||||
// NewToken creates a new machine token with the given public key and endpoints.
|
||||
func NewToken(publicKey secret.Secret, endpoints []netip.AddrPort) Token {
|
||||
func NewToken(publicKey secret.Secret, publicIP netip.Addr, endpoints []netip.AddrPort) Token {
|
||||
return Token{
|
||||
PublicKey: publicKey,
|
||||
PublicIP: publicIP,
|
||||
Endpoints: endpoints,
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user