func doJoinNetwork(ips []string, args []string) {
    doneCh := make(chan resultTuple, len(ips))
    // check all the nodes
    for _, ip := range ips {
        go joinNetwork(ip, servicePort, args[0], doneCh)