diff --git a/envs/monkey_zoo/blackbox/start_all_gcp_machines.py b/envs/monkey_zoo/blackbox/start_all_gcp_machines.py new file mode 100755 index 000000000..f31a072f9 --- /dev/null +++ b/envs/monkey_zoo/blackbox/start_all_gcp_machines.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 + +from gcp_test_machine_list import GCP_TEST_MACHINE_LIST +from utils.gcp_machine_handlers import GCPHandler + +gcp_handler = GCPHandler() +gcp_handler.start_machines(" ".join(GCP_TEST_MACHINE_LIST)) diff --git a/envs/monkey_zoo/blackbox/stop_all_gcp_machines.py b/envs/monkey_zoo/blackbox/stop_all_gcp_machines.py new file mode 100755 index 000000000..132191e94 --- /dev/null +++ b/envs/monkey_zoo/blackbox/stop_all_gcp_machines.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python3 + +from gcp_test_machine_list import GCP_TEST_MACHINE_LIST +from utils.gcp_machine_handlers import GCPHandler + +gcp_handler = GCPHandler() +gcp_handler.stop_machines(" ".join(GCP_TEST_MACHINE_LIST))