-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use non default mnemonic for releases (#10400)
Adds a secret in GCP that we read when making network deployments. Modify reth genesis to fund that account. Tested by running the deploy network workflow with [act](https://github.com/nektos/act) and verifying that I couldn't `add-l1-validator` with the default mnemonic. --------- Co-authored-by: PhilWindle <philip.windle@gmail.com>
- Loading branch information
1 parent
41f7645
commit bb5f364
Showing
16 changed files
with
371 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Create ingress firewall rules for UDP | ||
resource "google_compute_firewall" "udp_ingress" { | ||
name = "allow-udp-ingress-custom" | ||
network = "default" | ||
allow { | ||
protocol = "udp" | ||
ports = ["40400-40499", "8080", "8545"] | ||
} | ||
direction = "INGRESS" | ||
source_ranges = ["0.0.0.0/0"] | ||
target_tags = ["gke-node", "aztec-gke-node"] | ||
} | ||
|
||
# Create egress firewall rules for UDP | ||
resource "google_compute_firewall" "udp_egress" { | ||
name = "allow-udp-egress-custom" | ||
network = "default" | ||
allow { | ||
protocol = "udp" | ||
ports = ["40400-40499", "8080", "8545"] | ||
} | ||
direction = "EGRESS" | ||
destination_ranges = ["0.0.0.0/0"] | ||
target_tags = ["gke-node", "aztec-gke-node"] | ||
} | ||
|
||
# Create ingress firewall rules for TCP | ||
resource "google_compute_firewall" "tcp_ingress" { | ||
name = "allow-tcp-ingress-custom" | ||
network = "default" | ||
allow { | ||
protocol = "tcp" | ||
ports = ["40400-40499", "8080", "8545"] | ||
} | ||
direction = "INGRESS" | ||
source_ranges = ["0.0.0.0/0"] | ||
target_tags = ["gke-node", "aztec-gke-node"] | ||
} | ||
|
||
# Create egress firewall rules for TCP | ||
resource "google_compute_firewall" "tcp_egress" { | ||
name = "allow-tcp-egress-custom" | ||
network = "default" | ||
allow { | ||
protocol = "tcp" | ||
ports = ["40400-40499", "8080", "8545"] | ||
} | ||
direction = "EGRESS" | ||
destination_ranges = ["0.0.0.0/0"] | ||
target_tags = ["gke-node", "aztec-gke-node"] | ||
} |
Oops, something went wrong.