Skip to content
Snippets Groups Projects
Commit 35e4bd32 authored by kaiyou's avatar kaiyou
Browse files

Do not run discovery before vpn key is initialized

parent 9109a1bb
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,8 @@ import (
var memberlist = &Unit{
Name: "memberlist",
// Depend on the vpn so the vpn key is properly populated before we start broadcasting any node metadata
Dependencies: []*Unit{vpn},
Run: func(u *Unit, c *Cluster, ctx context.Context) error {
node := u.Manager.State.node
ml := sml.New[HeptoMeta, HeptoState](node.Name, node.IP, node.Port, node.Anchors, c.settings.Key, c.settings.Logger)
......
......@@ -98,6 +98,7 @@ func NewManager(settings *ClusterSettings, node *NodeSettings, logger logr.Logge
PublicIP: node.IP,
Role: node.Role,
VpnIP: networking.NodeAddress.IP,
// Vpn key is filled by the wireguard service
},
nodes: []*HeptoMeta{},
state: &HeptoState{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment