BB: Add utility scripts to start and stop all GCP machines

This commit is contained in:
Mike Salvatore 2021-08-02 07:10:50 -04:00
parent 275dbeccdd
commit 8ae0d5720b
2 changed files with 14 additions and 0 deletions

View File

@ -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))

View File

@ -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))