Skip to content

Commit

Permalink
Support Siren 2.0 (#1888)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorickdowne committed Aug 1, 2024
1 parent be295f7 commit b8899f0
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ Eth Docker uses a "semver-ish" scheme.
large.
- Second through fourth digit, [semver](https://semver.org/).

This is Eth Docker v2.11.0.1
This is Eth Docker v2.11.1.0
8 changes: 5 additions & 3 deletions default.env
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ IPV6=false
# Directory to keep ancient/static data. In use for Reth and Geth, optional.
# If you use this, make sure to chown the directory to uid 10001
ANCIENT_DIR=
# Password for Lighthouse Siren
SIREN_PASSWORD=

# Promtail logs label, something unique like the server name
LOGS_LABEL=eth-docker
Expand Down Expand Up @@ -86,8 +88,8 @@ PRYSM_UDP_PORT=9000
CL_QUIC_PORT=9001
# Local grafana dashboard port. Do not expose to Internet, it is insecure http
GRAFANA_PORT=3000
# Local Siren UI port. Do not expose to Internet, it is insecure http
SIREN_PORT=8080
# Local Siren UI port
SIREN_PORT=2443
# Prometheus port used when exposing directly on host; used for federation
PROMETHEUS_PORT=9090
# Local key manager port. Reachable only via localhost. Also doubles as Prysm web port
Expand Down Expand Up @@ -306,4 +308,4 @@ DDNS_TAG=v2
NODE_EXPORTER_IGNORE_MOUNT_REGEX='^/(dev|proc|sys|run|var/lib/docker/.+)($|/)'

# Used by ethd update - please do not adjust
ENV_VERSION=12
ENV_VERSION=13
16 changes: 15 additions & 1 deletion ethd
Original file line number Diff line number Diff line change
Expand Up @@ -965,7 +965,7 @@ envmigrate() {
PRYSM_UDP_PORT CL_QUIC_PORT GRAFANA_PORT SIREN_PORT PROMETHEUS_PORT KEY_API_PORT TRAEFIK_WEB_PORT \
TRAEFIK_WEB_HTTP_PORT CL_REST_PORT EL_RPC_PORT EL_WS_PORT EE_PORT ERIGON_TORRENT_PORT LOG_LEVEL JWT_SECRET \
EL_EXTRAS CL_EXTRAS VC_EXTRAS ARCHIVE_NODE SSV_P2P_PORT SSV_P2P_PORT_UDP ERIGON_P2P_PORT_2 \
ERIGON_P2P_PORT_3 LODESTAR_HEAP SSV_DKG_PORT )
ERIGON_P2P_PORT_3 LODESTAR_HEAP SSV_DKG_PORT SIREN_PASSWORD )
TARGET_VARS=( ETH_DOCKER_TAG NIM_SRC_BUILD_TARGET NIM_SRC_REPO NIM_DOCKER_TAG NIM_DOCKER_VC_TAG NIM_DOCKER_REPO \
NIM_DOCKER_VC_REPO NIM_DOCKERFILE TEKU_SRC_BUILD_TARGET TEKU_SRC_REPO TEKU_DOCKER_TAG TEKU_DOCKER_REPO \
TEKU_DOCKERFILE LH_SRC_BUILD_TARGET LH_SRC_REPO LH_DOCKER_TAG LH_DOCKER_REPO LH_DOCKERFILE \
Expand All @@ -985,6 +985,14 @@ envmigrate() {
OLD_VARS=( )
NEW_VARS=( )

# Always make sure we have a SIREN password
var="SIREN_PASSWORD"
SIREN_PASSWORD=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "${ENV_FILE}" || true)
if [ -z "${SIREN_PASSWORD}" ]; then
SIREN_PASSWORD=$(head -c 8 /dev/urandom | od -A n -t u8 | tr -d '[:space:]' | sha256sum | head -c 32)
set_value_in_env
fi

var=ENV_VERSION
__target_ver=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "default.env" || true)
__source_ver=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "${ENV_FILE}" || true)
Expand Down Expand Up @@ -3192,6 +3200,12 @@ config() {
var=GETH_DOCKERFILE
set_value_in_env
fi
var="SIREN_PASSWORD"
SIREN_PASSWORD=$(sed -n -e "s/^${var}=\(.*\)/\1/p" "${ENV_FILE}" || true)
if [ -z "${SIREN_PASSWORD}" ]; then
SIREN_PASSWORD=$(head -c 8 /dev/urandom | od -A n -t u8 | tr -d '[:space:]' | sha256sum | head -c 32)
set_value_in_env
fi

${__as_owner} rm .env.original

Expand Down
2 changes: 1 addition & 1 deletion siren-shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
services:
siren:
ports:
- ${SHARE_IP:-}:${SIREN_PORT}:80/tcp
- ${SHARE_IP:-}:${SIREN_PORT}:443/tcp
11 changes: 11 additions & 0 deletions siren.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,19 @@ services:
restart: "unless-stopped"
image: ${SIREN_DOCKER_REPO}:${SIREN_DOCKER_TAG}
volumes:
- lhvalidator-data:/var/lib/lighthouse
- ./siren/docker-entrypoint.sh:/usr/local/bin/docker-entrypoint.sh
- /etc/localtime:/etc/localtime:ro
environment:
- BEACON_URL=${CL_NODE}
- VALIDATOR_URL=http://vc:7500
- SESSION_PASSWORD=${SIREN_PASSWORD}
- SSL_ENABLED=true
- DEBUG=false
- SIREN_PORT=${SIREN_PORT}
<<: *logging
entrypoint:
- docker-entrypoint.sh
labels:
- traefik.enable=true
- traefik.http.routers.$(SIREN_HOST:-siren}.service=${SIREN_HOST:-siren}
Expand Down
14 changes: 14 additions & 0 deletions siren/docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -Eeuo pipefail

if [ ! -f /var/lib/lighthouse/validators/api-token.txt ]; then
echo "Validator client API token not found. Waiting 30s before restarting."
sleep 30
exit 1
fi

API_TOKEN=$(cat /var/lib/lighthouse/validators/api-token.txt)
export API_TOKEN

echo "Log into Siren at https://my-node-ip/${SIREN_PORT} with password ${SESSION_PASSWORD}"
exec /app/docker-assets/docker-entrypoint.sh

0 comments on commit b8899f0

Please sign in to comment.