Skip to content
Merged
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
10 changes: 10 additions & 0 deletions package_variants/sepolia/dappnode_package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "lighthouse-sepolia.dnp.dappnode.eth",
"version": "0.1.0",
"links": {
"ui": "http://brain.web3signer-sepolia.dappnode",
"homepage": "https://github.com/dappnode/DAppNodePackage-lighthouse-generic#readme",
"readme": "https://github.com/sigp/lighthouse/blob/stable/README.md",
"docs": "https://lighthouse-book.sigmaprime.io/"
}
}
17 changes: 17 additions & 0 deletions package_variants/sepolia/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: "3.5"
services:
beacon-chain:
build:
context: beacon-chain
args:
NETWORK: sepolia
P2P_PORT: 9804
ports:
- "9804:9804/tcp"
- "9804:9804/udp"
environment:
CORSDOMAIN: "http://lighthouse-sepolia.dappnode"
validator:
build:
args:
NETWORK: sepolia
52 changes: 52 additions & 0 deletions package_variants/sepolia/hoodi-notifications.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
endpoints:
- name: "Sepolia Lighthouse Node Syncing Check"
enabled: true
group: "sepolia"
url: "http://beacon-chain.lighthouse-sepolia.dappnode:3500/eth/v1/node/syncing"
method: "GET"
headers:
Content-Type: "application/json"
interval: "30s"
conditions:
- "[BODY].data.is_syncing == false"
definition:
title: "Sepolia Lighthouse Node Synced Check"
description: "Check if the Sepolia Lighthouse (Consensus) Node is synced. You will receive a notification if the node is syncing and another one when it is synced."
correlationId: "lighthouse-sepolia-syncing"
isBanner: false
priority: "medium"
alerts:
- type: custom
enabled: true
description: "Lighthouse Consensus Node syncing"
failure-threshold: 4
success-threshold: 1
send-on-resolved: true

- name: "Sepolia Lighthouse Node Peers Count Check"
enabled: true
group: "sepolia"
url: "http://beacon-chain.lighthouse-sepolia.dappnode:3500/eth/v1/node/peer_count"
method: "GET"
headers:
Content-Type: "application/json"
interval: "30s"
conditions:
- "[BODY].data.connected >= 10"
definition:
title: "Sepolia Lighthouse Node Peers Count Check"
description: "Check if the Sepolia Lighthouse (Consensus) Node has a minimum number of peers. You will receive a notification if the node has fewer than the peers defined for 5 minutes, and another when it recovers."
correlationId: "lighthouse-sepolia-peers"
isBanner: false
priority: "low"
metric:
min: 0
max: 100
unit: "peers"
alerts:
- type: custom
enabled: true
description: "Lighthouse Consensus Node peers count is below [CONDITION_VALUE]"
failure-threshold: 10
success-threshold: 1
send-on-resolved: true
20 changes: 20 additions & 0 deletions package_variants/sepolia/prometheus-targets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[
{
"labels": {
"package": "lighthouse-sepolia.dnp.dappnode.eth",
"service": "beacon-chain.lighthouse-sepolia.dappnode"
},
"targets": [
"beacon-chain.lighthouse-sepolia.dappnode:8008"
]
},
{
"labels": {
"package": "lighthouse-sepolia.dnp.dappnode.eth",
"service": "validator.lighthouse-sepolia.dappnode"
},
"targets": [
"validator.lighthouse-sepolia.dappnode:8008"
]
}
]
2 changes: 1 addition & 1 deletion validator/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

SUPPORTED_NETWORKS="gnosis hoodi mainnet"
SUPPORTED_NETWORKS="gnosis hoodi mainnet sepolia"
MEVBOOST_FLAG_KEY="--builder-proposals"
SKIP_MEVBOOST_URL="true"
CLIENT="lighthouse"
Expand Down