2025-06-13 13:43:33 +08:00
|
|
|
from src.env_vars import NOMOS_IMAGE, NOMOS_MOD_DA_IMAGE, NOMOS_EXECUTOR_MOD_DA_IMAGE
|
2025-02-04 16:22:54 +08:00
|
|
|
|
2024-12-19 16:02:57 +08:00
|
|
|
nomos_nodes = {
|
2025-06-13 13:43:33 +08:00
|
|
|
"nomos_mod_da": {
|
|
|
|
|
"image": NOMOS_MOD_DA_IMAGE,
|
|
|
|
|
"volumes": ["cluster_config:/etc/nomos", "./kzgrs/kzgrs_test_params:/kzgrs_test_params:z"],
|
|
|
|
|
"ports": ["3000/udp", "18080/tcp"],
|
2025-06-17 14:32:24 +08:00
|
|
|
"entrypoint": "/etc/nomos/scripts/run_nomos_node_debug.sh",
|
2025-06-13 13:43:33 +08:00
|
|
|
},
|
|
|
|
|
"nomos_executor_mod_da": {
|
|
|
|
|
"image": NOMOS_EXECUTOR_MOD_DA_IMAGE,
|
|
|
|
|
"volumes": ["cluster_config:/etc/nomos", "./kzgrs/kzgrs_test_params:/kzgrs_test_params:z"],
|
|
|
|
|
"ports": ["3000/udp", "18080/tcp"],
|
2025-06-17 14:32:24 +08:00
|
|
|
"entrypoint": "/etc/nomos/scripts/run_nomos_executor_debug.sh",
|
2025-06-13 13:43:33 +08:00
|
|
|
},
|
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": {
|
2025-02-04 16:22:54 +08:00
|
|
|
"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": {
|
2025-02-04 16:22:54 +08:00
|
|
|
"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": {
|
2025-02-04 16:22:54 +08:00
|
|
|
"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
|
|
|
}
|