Handle multiple nodes in cluster
This commit is contained in:
parent
35840b9eb7
commit
e6719ab571
5 changed files with 295 additions and 237 deletions
20
orchestrate.py
Normal file
20
orchestrate.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Orchestrator for G5K
|
||||
# Fill the IP addresses and config tweaks of your job.
|
||||
|
||||
import json, socket
|
||||
|
||||
# Enter all the numbers of the nodes of the job
|
||||
nodes = []
|
||||
|
||||
# IP of the nodes ("n" is placeholder for the node number)
|
||||
IP = "172.16.101.n"
|
||||
|
||||
configs = [
|
||||
{}
|
||||
]
|
||||
|
||||
def orchestrate():
|
||||
pass
|
||||
|
||||
if __name__ == "__main__":
|
||||
orchestrate()
|
||||
Loading…
Reference in a new issue