Handle multiple nodes in cluster

This commit is contained in:
Pascal Engélibert 2026-06-29 16:29:47 +02:00
commit e6719ab571
5 changed files with 295 additions and 237 deletions

20
orchestrate.py Normal file
View 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()