Skip to content

Commit 7cc8efd

Browse files
committed
feat: make 'Test network deployment' workflow use disks config
Data and boot disks are fully configurable.
1 parent ae36413 commit 7cc8efd

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/test-deploy-network.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ jobs:
6161
google_zone: europe-west1-b
6262
google_machine_type: e2-highmem-4
6363
google_compute_instance_boot_disk_size: 200
64+
google_compute_instance_boot_disk_type: pd-standard
6465
google_compute_instance_data_disk_size: 250
66+
google_compute_instance_data_disk_type: pd-standard
6567
- environment: testing-mainnet
6668
environment_prefix: testing
6769
cardano_network: mainnet
@@ -86,7 +88,9 @@ jobs:
8688
google_zone: europe-west1-b
8789
google_machine_type: e2-highmem-8
8890
google_compute_instance_boot_disk_size: 250
91+
google_compute_instance_boot_disk_type: pd-standard
8992
google_compute_instance_data_disk_size: 1000
93+
google_compute_instance_data_disk_type: pd-standard
9094

9195
environment: ${{ matrix.environment }}
9296
runs-on: ubuntu-22.04
@@ -113,7 +117,10 @@ jobs:
113117
google_zone: ${{ matrix.google_zone }}
114118
google_machine_type: ${{ matrix.google_machine_type }}
115119
google_compute_instance_boot_disk_size: ${{ matrix.google_compute_instance_boot_disk_size }}
120+
google_compute_instance_boot_disk_type: ${{ matrix.google_compute_instance_boot_disk_type }}
116121
google_compute_instance_data_disk_size: ${{ matrix.google_compute_instance_data_disk_size }}
122+
google_compute_instance_data_disk_type: ${{ matrix.google_compute_instance_data_disk_type }}
123+
google_compute_instance_data_disk_snapshot: ${{ vars.GOOGLE_COMPUTE_INSTANCE_DATA_DISK_SNAPSHOT }}
117124
google_application_credentials: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
118125
mithril_use_p2p_network: ${{ matrix.mithril_use_p2p_network }}
119126
mithril_api_domain: ${{ matrix.mithril_api_domain }}

0 commit comments

Comments
 (0)