Skip to content

Commit 8aec2a4

Browse files
authored
Merge pull request #1625 from input-output-hk/jpraynaud/1617-deploy-testing-mainnet
Deploy `testing-mainnet` network
2 parents c4458db + 9c0a2fb commit 8aec2a4

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

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

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
type: choice
1616
options:
1717
- dev-preview
18+
- testing-mainnet
1819
dry_run:
1920
description: Dry run will not deploy the distribution to the Mithril network
2021
required: true
@@ -26,7 +27,7 @@ jobs:
2627
strategy:
2728
fail-fast: false
2829
matrix:
29-
environment: [ dev-preview ]
30+
environment: [ dev-preview, testing-mainnet ]
3031
include:
3132
- environment: dev-preview
3233
environment_prefix: dev
@@ -61,6 +62,31 @@ jobs:
6162
google_machine_type: e2-highmem-4
6263
google_compute_instance_boot_disk_size: 200
6364
google_compute_instance_data_disk_size: 250
65+
- environment: testing-mainnet
66+
environment_prefix: testing
67+
cardano_network: mainnet
68+
mithril_use_p2p_network: false
69+
mithril_api_domain: api.mithril.network
70+
mithril_era_reader_adapter_type: bootstrap
71+
mithril_protocol_parameters: |
72+
{
73+
k = 2422
74+
m = 20973
75+
phi_f = 0.20
76+
}
77+
mithril_signers: |
78+
{
79+
"1" = {
80+
type = "unverified-alone",
81+
pool_id = "pool1re8cmjt895tpx8dx2veg0cew5yqtxnt82sll03e433a4ugnh9w7",
82+
}
83+
}
84+
terraform_backend_bucket: hydra-terraform-admin
85+
google_region: europe-west1
86+
google_zone: europe-west1-b
87+
google_machine_type: e2-highmem-8
88+
google_compute_instance_boot_disk_size: 250
89+
google_compute_instance_data_disk_size: 1000
6490

6591
environment: ${{ matrix.environment }}
6692
runs-on: ubuntu-22.04

.github/workflows/test-docker-distribution.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
description: The url of the archive of the Cardano binaries
1919
required: true
2020
type: string
21-
default: https://github.com/input-output-hk/cardano-node/releases/download/8.7.3/cardano-node-8.7.3-linux.tar.gz
21+
default: https://github.com/IntersectMBO/cardano-node/releases/download/8.9.0/cardano-node-8.9.0-linux.tar.gz
2222
dry_run:
2323
description: Dry run will not push the Docker images to the registry
2424
required: true

mithril-infra/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ locals {
141141
variable "cardano_image_id" {
142142
type = string
143143
description = "The Cardano image tag of service to deploy"
144-
default = "8.7.3"
144+
default = "8.9.0"
145145
}
146146

147147
variable "cardano_image_registry" {

0 commit comments

Comments
 (0)