29 lines
1.0 KiB
Python
Raw Normal View History

from src.env_vars import NOMOS_IMAGE
2024-12-19 16:02:57 +08:00
nomos_nodes = {
2025-05-29 16:49:33 +08:00
"nomos_custom": {
"image": NOMOS_IMAGE,
"volumes": ["cluster_config:/etc/nomos", "./kzgrs/kzgrs_test_params:/kzgrs_test_params:z"],
"ports": ["3000/udp", "18080/tcp"],
"entrypoint": "/etc/nomos/scripts/run_customized_node.sh",
},
2024-12-19 16:02:57 +08:00
"nomos": {
"image": NOMOS_IMAGE,
2025-01-14 13:39:12 +08:00
"volumes": ["cluster_config:/etc/nomos", "./kzgrs/kzgrs_test_params:/kzgrs_test_params:z"],
2024-12-19 16:02:57 +08:00
"ports": ["3000/udp", "18080/tcp"],
"entrypoint": "/etc/nomos/scripts/run_nomos_node.sh",
},
"nomos_executor": {
"image": NOMOS_IMAGE,
2025-01-14 13:39:12 +08:00
"volumes": ["cluster_config:/etc/nomos", "./kzgrs/kzgrs_test_params:/kzgrs_test_params:z"],
2024-12-19 16:02:57 +08:00
"ports": ["3000/udp", "18080/tcp"],
"entrypoint": "/etc/nomos/scripts/run_nomos_executor.sh",
},
2025-01-06 18:34:00 +08:00
"cfgsync": {
"image": NOMOS_IMAGE,
2025-01-14 13:39:12 +08:00
"volumes": ["cluster_config:/etc/nomos"],
2025-01-06 18:34:00 +08:00
"ports": "",
"entrypoint": "/etc/nomos/scripts/run_cfgsync.sh",
},
2024-12-19 16:02:57 +08:00
}