@@ -262,6 +262,7 @@ def run(plan, args={}):
262262 plan ,
263263 all_el_contexts ,
264264 global_node_selectors ,
265+ global_tolerations ,
265266 )
266267 fuzz_target = "http://{0}:{1}" .format (
267268 broadcaster_service .ip_address ,
@@ -298,6 +299,7 @@ def run(plan, args={}):
298299 jwt_file ,
299300 args_with_right_defaults .global_log_level ,
300301 global_node_selectors ,
302+ global_tolerations ,
301303 args_with_right_defaults .mev_params ,
302304 )
303305 mev_endpoints .append (endpoint )
@@ -330,6 +332,7 @@ def run(plan, args={}):
330332 args_with_right_defaults .port_publisher ,
331333 num_participants ,
332334 global_node_selectors ,
335+ global_tolerations ,
333336 )
334337 elif args_with_right_defaults .mev_type == constants .MEV_RS_MEV_TYPE :
335338 endpoint , relay_ip_address , relay_port = mev_rs_mev_relay .launch_mev_relay (
@@ -341,6 +344,7 @@ def run(plan, args={}):
341344 args_with_right_defaults .port_publisher ,
342345 num_participants ,
343346 global_node_selectors ,
347+ global_tolerations ,
344348 )
345349 else :
346350 fail ("Invalid MEV type" )
@@ -387,6 +391,7 @@ def run(plan, args={}):
387391 args_with_right_defaults .port_publisher ,
388392 index ,
389393 global_node_selectors ,
394+ global_tolerations ,
390395 )
391396 elif args_with_right_defaults .mev_type == constants .MEV_RS_MEV_TYPE :
392397 plan .print ("Launching mev-rs mev boost" )
@@ -411,6 +416,7 @@ def run(plan, args={}):
411416 args_with_right_defaults .port_publisher ,
412417 index ,
413418 global_node_selectors ,
419+ global_tolerations ,
414420 )
415421 elif (
416422 args_with_right_defaults .mev_type == constants .COMMIT_BOOST_MEV_TYPE
@@ -437,6 +443,7 @@ def run(plan, args={}):
437443 args_with_right_defaults .port_publisher ,
438444 index ,
439445 global_node_selectors ,
446+ global_tolerations ,
440447 final_genesis_timestamp ,
441448 )
442449 else :
@@ -468,6 +475,7 @@ def run(plan, args={}):
468475 fuzz_target ,
469476 tx_fuzz_params ,
470477 global_node_selectors ,
478+ global_tolerations ,
471479 )
472480 plan .print ("Successfully launched tx-fuzz" )
473481 elif additional_service == "forkmon" :
@@ -480,6 +488,7 @@ def run(plan, args={}):
480488 forkmon_config_template ,
481489 all_el_contexts ,
482490 global_node_selectors ,
491+ global_tolerations ,
483492 args_with_right_defaults .port_publisher ,
484493 index ,
485494 args_with_right_defaults .docker_cache_params ,
@@ -492,6 +501,7 @@ def run(plan, args={}):
492501 all_el_contexts ,
493502 persistent ,
494503 global_node_selectors ,
504+ global_tolerations ,
495505 args_with_right_defaults .port_publisher ,
496506 index ,
497507 args_with_right_defaults .docker_cache_params ,
@@ -511,6 +521,7 @@ def run(plan, args={}):
511521 network_params ,
512522 dora_params ,
513523 global_node_selectors ,
524+ global_tolerations ,
514525 mev_endpoints ,
515526 mev_endpoint_names ,
516527 args_with_right_defaults .port_publisher ,
@@ -530,6 +541,7 @@ def run(plan, args={}):
530541 args_with_right_defaults .participants ,
531542 network_params ,
532543 global_node_selectors ,
544+ global_tolerations ,
533545 args_with_right_defaults .port_publisher ,
534546 index ,
535547 args_with_right_defaults .docker_cache_params ,
@@ -547,6 +559,7 @@ def run(plan, args={}):
547559 args_with_right_defaults .participants ,
548560 network_params ,
549561 global_node_selectors ,
562+ global_tolerations ,
550563 args_with_right_defaults .port_publisher ,
551564 index ,
552565 args_with_right_defaults .docker_cache_params ,
@@ -562,6 +575,7 @@ def run(plan, args={}):
562575 network_params ,
563576 persistent ,
564577 global_node_selectors ,
578+ global_tolerations ,
565579 args_with_right_defaults .port_publisher ,
566580 index ,
567581 args_with_right_defaults .docker_cache_params ,
@@ -580,6 +594,7 @@ def run(plan, args={}):
580594 el_cl_data_files_artifact_uuid ,
581595 network_params ,
582596 global_node_selectors ,
597+ global_tolerations ,
583598 final_genesis_timestamp ,
584599 args_with_right_defaults .port_publisher ,
585600 index ,
@@ -599,6 +614,7 @@ def run(plan, args={}):
599614 el_cl_data_files_artifact_uuid ,
600615 network_params ,
601616 global_node_selectors ,
617+ global_tolerations ,
602618 final_genesis_timestamp ,
603619 args_with_right_defaults .port_publisher ,
604620 index ,
@@ -616,6 +632,7 @@ def run(plan, args={}):
616632 args_with_right_defaults .port_publisher ,
617633 index ,
618634 global_node_selectors ,
635+ global_tolerations ,
619636 args_with_right_defaults .docker_cache_params ,
620637 )
621638 plan .print ("Successfully launched apache" )
@@ -630,6 +647,7 @@ def run(plan, args={}):
630647 args_with_right_defaults .port_publisher ,
631648 index ,
632649 global_node_selectors ,
650+ global_tolerations ,
633651 args_with_right_defaults .docker_cache_params ,
634652 )
635653 plan .print ("Successfully launched nginx" )
@@ -646,6 +664,7 @@ def run(plan, args={}):
646664 all_el_contexts ,
647665 persistent ,
648666 global_node_selectors ,
667+ global_tolerations ,
649668 args_with_right_defaults .port_publisher ,
650669 index ,
651670 )
@@ -676,6 +695,7 @@ def run(plan, args={}):
676695 grafana_dashboards_config_template ,
677696 prometheus_private_url ,
678697 global_node_selectors ,
698+ global_tolerations ,
679699 args_with_right_defaults .grafana_params ,
680700 args_with_right_defaults .port_publisher ,
681701 index ,
@@ -701,6 +721,7 @@ def run(plan, args={}):
701721 args_with_right_defaults .port_publisher ,
702722 index ,
703723 global_node_selectors ,
724+ global_tolerations ,
704725 args_with_right_defaults .docker_cache_params ,
705726 )
706727 plan .print ("Successfully launched assertoor" )
@@ -712,6 +733,7 @@ def run(plan, args={}):
712733 fuzz_target ,
713734 args_with_right_defaults .custom_flood_params ,
714735 global_node_selectors ,
736+ global_tolerations ,
715737 args_with_right_defaults .docker_cache_params ,
716738 )
717739 elif additional_service == "spamoor" :
@@ -731,6 +753,7 @@ def run(plan, args={}):
731753 args_with_right_defaults .participants ,
732754 args_with_right_defaults .spamoor_params ,
733755 global_node_selectors ,
756+ global_tolerations ,
734757 args_with_right_defaults .network_params ,
735758 args_with_right_defaults .port_publisher ,
736759 index ,
@@ -762,6 +785,7 @@ def run(plan, args={}):
762785 grafana_dashboards_config_template ,
763786 prometheus_private_url ,
764787 global_node_selectors ,
788+ global_tolerations ,
765789 args_with_right_defaults .grafana_params ,
766790 args_with_right_defaults .port_publisher ,
767791 prometheus_grafana_index ,
0 commit comments