forked from p15670423/monkey
BB: Add utility scripts to start and stop all GCP machines
This commit is contained in:
parent
275dbeccdd
commit
8ae0d5720b
|
@ -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))
|
|
@ -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))
|
Loading…
Reference in New Issue