mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
Check if hostname is resolvable before running agent
This commit is contained in:
parent
0726ce75e9
commit
7e1699cda0
@ -253,6 +253,8 @@ func get(envInfo *cmds.Agent) (*config.Node, error) {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
hostnameCheck(nodeName)
|
||||
|
||||
nodeCertFile := filepath.Join(envInfo.DataDir, "token-node.crt")
|
||||
nodeKeyFile := filepath.Join(envInfo.DataDir, "token-node.key")
|
||||
nodePasswordFile := filepath.Join(envInfo.DataDir, "node-password.txt")
|
||||
@ -348,3 +350,14 @@ func getConfig(info *clientaccess.Info) (*config.Control, error) {
|
||||
controlControl := &config.Control{}
|
||||
return controlControl, json.Unmarshal(data, controlControl)
|
||||
}
|
||||
|
||||
func hostnameCheck(hostname string) {
|
||||
for {
|
||||
_, err := sysnet.LookupHost(hostname)
|
||||
if err == nil {
|
||||
break
|
||||
}
|
||||
logrus.Infof("Waiting for hostname %s to be resolvable: %v", hostname, err)
|
||||
time.Sleep(2 * time.Second)
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user