Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update dora chart & role for v1.11 release #254

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 7 additions & 11 deletions roles/dora/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ dora_mev_relays: []
# name: "Relay 1"
# url: "http://mev-relay/"

dora_chain_name: sepolia
dora_chain_displayname: ""
dora_chain_config: ""
dora_chain_genesistime: 0
dora_frontend_title: "Dora the Explorer"
dora_frontend_subtitle: "Testnet"
dora_frontend_ethexplorer: ""
Expand All @@ -45,6 +42,8 @@ dora_proxy_count: 1
dora_callrate_limit: 2
dora_callrate_burst: 10

dora_indexer_in_memory_epochs: 10

# This can be used to create additional config files for the beaconchain explorer.
# It's useful when using private testnets and you need to mount a custom network config
# as the chain config. All files will be available within the explorer containers on the
Expand Down Expand Up @@ -88,9 +87,6 @@ dora_db_container_networks: "{{ dora_docker_networks }}"
dora_config: |
# Chain network configuration
chain:
name: "{{ dora_chain_name }}"
genesisTimestamp: {{ dora_chain_genesistime }}
configPath: "{{ dora_chain_config }}"
displayName: "{{ dora_chain_displayname }}"

# HTTP Server configuration
Expand Down Expand Up @@ -143,19 +139,19 @@ dora_config: |
- {{ endpoint | to_json }}
{% endfor %}

depositLogBatchSize: 10000
depositLogBatchSize: 1000

# indexer keeps track of the latest epochs in memory.
indexer:
# max number of epochs to keep in memory
inMemoryEpochs: 10

# disable synchronizing and everything that writes to the db (indexer just maintains local cache)
disableIndexWriter: false
inMemoryEpochs: {{ dora_indexer_in_memory_epochs }}

# number of seconds to wait between each epoch (don't overload CL client)
syncEpochCooldown: 1

# max number of parallel state requests to make to the CL clients
maxParallelValidatorSetRequests: 2

mevIndexer:
# list of mev relays to crawl mev blocks from
relays: {% if not dora_mev_relays %}[]{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion roles/generate_kubernetes_config/defaults/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ gen_kubernetes_config_helm_charts: # noqa var-naming[no-role-prefix]
dependencies:
- name: dora
repository: https://ethpandaops.github.io/ethereum-helm-charts
version: 0.0.5
version: 0.0.6
forky:
valuesTemplatePath: templates/forky.yaml.j2
dependencies:
Expand Down
1 change: 0 additions & 1 deletion roles/generate_kubernetes_config/templates/dora.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ dora:
pathType: Prefix

name: {{ ethereum_network_name }}
configPath: "https://config.{{ network_subdomain }}/cl/config.yaml"
validatorNamesInventory: "https://config.{{ network_subdomain }}/api/v1/nodes/validator-ranges"
proxyCount: 2
extraEnv:
Expand Down