Skip to content

Commit

Permalink
bump actions, no rate limit lh
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa committed Jul 5, 2024
1 parent 4076916 commit c7a1cc5
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: composite
steps:
- name: Install asdf
uses: asdf-vm/actions/setup@v2
uses: asdf-vm/actions/setup@v3

- name: Install asdf tools
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-ansible.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Install ansible role/collection dependencies
working-directory: ./ansible
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
helm-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Check if kubernetes/*/* is not empty
id: check-kubernetes-directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
terraform-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Lint
working-directory: ./terraform
Expand Down
6 changes: 6 additions & 0 deletions ansible/inventories/devnet-1/group_vars/goomy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

goomy_container_networks: "{{ docker_networks_shared }}"
goomy_rpc_urls:
- "{% for host in groups['execution_node_without_besu'] %}https://{{ secret_nginx_shared_basic_auth.name }}:{{ secret_nginx_shared_basic_auth.password }}@rpc.{{ host }}.{{ network_subdomain }},{% endfor %}"
goomy_scenario: "combined"
goomy_extra_args: ["--sidecars", "1", "--throughput", "3", "--max-pending", "20"]
1 change: 1 addition & 0 deletions ansible/inventories/devnet-1/group_vars/lighthouse.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ lighthouse_container_command_extra_args:
- --boot-nodes={{ ethereum_cl_bootnodes | join(',') }}
- --allow-insecure-genesis-sync
- --subscribe-all-data-column-subnets
- --disable-inbound-rate-limiter
lighthouse_validator_container_volumes:
- "{{ lighthouse_validator_datadir }}:/validator-data"
- "{{ eth_testnet_config_dir }}:/network-config:ro"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ lighthouse_container_command_extra_args:
- --testnet-dir=/network-config
- --boot-nodes={{ ethereum_cl_bootnodes | join(',') }}
- --allow-insecure-genesis-sync
- --disable-inbound-rate-limiter
10 changes: 9 additions & 1 deletion ansible/inventories/devnet-1/inventory.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ teku-geth-1 ansible_host=162.243.164.29 ipv6=2604:a880:400:d0::22b3:1001 cloud=d
teku-geth-2 ansible_host=206.189.158.234 ipv6=2400:6180:0:d0::1523:c001 cloud=digitalocean cloud_region=sgp1 validator_start=700 validator_end=800
teku-geth-3 ansible_host=159.65.54.12 ipv6=2a03:b0c0:1:d0::110e:d001 cloud=digitalocean cloud_region=lon1 validator_start=800 validator_end=900


[execution_node_without_besu:children]
erigon
ethereumjs
geth
nethermind
reth
# Consensus client groups

[lighthouse:children]
Expand Down Expand Up @@ -64,4 +69,7 @@ execution_node
bootnode-1

[tx_fuzz_txs]
bootnode-1

[goomy]
bootnode-1
7 changes: 7 additions & 0 deletions ansible/playbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@
- role: ethpandaops.general.dora
tags: [dora]


- hosts: goomy
become: true
roles:
- role: ethpandaops.general.goomy
tags: [goomy]

- hosts: localhost
roles:
- role: ethpandaops.general.ethereum_post_network_setup
Expand Down

0 comments on commit c7a1cc5

Please sign in to comment.