Skip to content

Commit a4af4a8

Browse files
authored
feat: charon nickname env variable (#311)
Add `CHARON_NICKNAME` to env samples and docker compose env variables.
1 parent 6aa56ef commit a4af4a8

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.env.sample.holesky

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://checkpoint-sync.holesky.ethpandaops.io/
7575
# Advertise a custom external DNS hostname or IP address for libp2p peer discovery.
7676
#CHARON_P2P_EXTERNAL_HOSTNAME=
7777

78+
# Nickname to identify this charon node on monitoring (max 32 characters)
79+
#CHARON_NICKNAME=
80+
7881
# Loki log aggregation server addresses. Disable loki log aggregation by setting an empty address.
7982
#CHARON_LOKI_ADDRESSES=
8083

.env.sample.mainnet

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ LIGHTHOUSE_CHECKPOINT_SYNC_URL=https://mainnet.checkpoint.sigp.io/
7575
# Advertise a custom external DNS hostname or IP address for libp2p peer discovery.
7676
#CHARON_P2P_EXTERNAL_HOSTNAME=
7777

78+
# Nickname to identify this charon node on monitoring (max 32 characters)
79+
#CHARON_NICKNAME=
80+
7881
# Loki log aggregation server addresses. Disable loki log aggregation by setting an empty address.
7982
#CHARON_LOKI_ADDRESSES=
8083

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ services:
9393
- CHARON_FEATURE_SET_ENABLE=${CHARON_FEATURE_SET_ENABLE:-}
9494
- CHARON_LOKI_ADDRESSES=${CHARON_LOKI_ADDRESSES:-http://loki:3100/loki/api/v1/push}
9595
- CHARON_LOKI_SERVICE=charon
96+
- CHARON_NICKNAME=${CHARON_NICKNAME:-}
9697
ports:
9798
- ${CHARON_PORT_P2P_TCP:-3610}:${CHARON_PORT_P2P_TCP:-3610}/tcp # P2P TCP libp2p
9899
networks: [dvnode]

0 commit comments

Comments
 (0)