Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
a18935f5
Unverified
Commit
a18935f5
authored
Dec 13, 2023
by
Barnabas Busa
Committed by
GitHub
Dec 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: fixing too long graffitis (#410)
parent
cb33648d
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
6 deletions
+24
-6
lighthouse_launcher.star
src/cl/lighthouse/lighthouse_launcher.star
+4
-1
lodestar_launcher.star
src/cl/lodestar/lodestar_launcher.star
+4
-1
nimbus_launcher.star
src/cl/nimbus/nimbus_launcher.star
+8
-2
prysm_launcher.star
src/cl/prysm/prysm_launcher.star
+4
-1
teku_launcher.star
src/cl/teku/teku_launcher.star
+4
-1
No files found.
src/cl/lighthouse/lighthouse_launcher.star
View file @
a18935f5
...
...
@@ -430,7 +430,10 @@ def get_validator_config(
"--metrics-allow-origin=*",
"--metrics-port={0}".format(VALIDATOR_METRICS_PORT_NUM),
# ^^^^^^^^^^^^^^^^^^^ PROMETHEUS CONFIG ^^^^^^^^^^^^^^^^^^^^^
"--graffiti=" + validator_node_service_name,
"--graffiti="
+ constants.CL_CLIENT_TYPE.lighthouse
+ "-"
+ el_client_context.client_name,
]
if len(extra_params):
...
...
src/cl/lodestar/lodestar_launcher.star
View file @
a18935f5
...
...
@@ -375,7 +375,10 @@ def get_validator_config(
"--metrics.address=0.0.0.0",
"--metrics.port={0}".format(METRICS_PORT_NUM),
# ^^^^^^^^^^^^^^^^^^^ PROMETHEUS CONFIG ^^^^^^^^^^^^^^^^^^^^^
"--graffiti=" + validator_node_service_name,
"--graffiti="
+ constants.CL_CLIENT_TYPE.lodestar
+ "-"
+ el_client_context.client_name,
]
if len(extra_params) > 0:
...
...
src/cl/nimbus/nimbus_launcher.star
View file @
a18935f5
...
...
@@ -336,7 +336,10 @@ def get_beacon_config(
"--validators-dir=" + validator_keys_dirpath,
"--secrets-dir=" + validator_secrets_dirpath,
"--suggested-fee-recipient=" + constants.VALIDATING_REWARDS_ACCOUNT,
"--graffiti=" + beacon_node_service_name,
"--graffiti="
+ constants.CL_CLIENT_TYPE.nimbus
+ "-"
+ el_client_context.client_name,
]
if node_keystore_files != None and not split_mode_enabled:
...
...
@@ -421,7 +424,10 @@ def get_validator_config(
"--metrics",
"--metrics-address=0.0.0.0",
"--metrics-port={0}".format(VALIDATOR_METRICS_PORT_NUM),
"--graffiti=" + validator_node_service_name,
"--graffiti="
+ constants.CL_CLIENT_TYPE.nimbus
+ "-"
+ el_client_context.client_name,
]
if len(extra_params) > 0:
...
...
src/cl/prysm/prysm_launcher.star
View file @
a18935f5
...
...
@@ -384,7 +384,10 @@ def get_validator_config(
"--monitoring-host=0.0.0.0",
"--monitoring-port={0}".format(VALIDATOR_MONITORING_PORT_NUM),
# ^^^^^^^^^^^^^^^^^^^ METRICS CONFIG ^^^^^^^^^^^^^^^^^^^^^
"--graffiti=" + service_name,
"--graffiti="
+ constants.CL_CLIENT_TYPE.prysm
+ "-"
+ el_client_context.client_name,
]
if len(extra_params) > 0:
...
...
src/cl/teku/teku_launcher.star
View file @
a18935f5
...
...
@@ -278,7 +278,10 @@ def get_config(
"--metrics-port={0}".format(METRICS_PORT_NUM),
# ^^^^^^^^^^^^^^^^^^^ METRICS CONFIG ^^^^^^^^^^^^^^^^^^^^^
"--Xtrusted-setup=" + constants.KZG_DATA_DIRPATH_ON_CLIENT_CONTAINER,
"--validators-graffiti=" + service_name,
"--validators-graffiti="
+ constants.CL_CLIENT_TYPE.teku
+ "-"
+ el_client_context.client_name,
]
# Depending on whether we're using a node keystore, we'll need to add the validator flags
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment