20 lines
327 B
Python
20 lines
327 B
Python
# 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()
|