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
21eae3b5
Unverified
Commit
21eae3b5
authored
Dec 13, 2023
by
Barnabas Busa
Committed by
GitHub
Dec 13, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add graffiti (#408)
parent
c658c7e0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
lighthouse_launcher.star
src/cl/lighthouse/lighthouse_launcher.star
+3
-0
lodestar_launcher.star
src/cl/lodestar/lodestar_launcher.star
+3
-0
prysm_launcher.star
src/cl/prysm/prysm_launcher.star
+2
-1
teku_launcher.star
src/cl/teku/teku_launcher.star
+3
-0
No files found.
src/cl/lighthouse/lighthouse_launcher.star
View file @
21eae3b5
...
...
@@ -197,6 +197,7 @@ def launch(
v_max_cpu,
v_min_mem,
v_max_mem,
validator_node_service_name,
extra_validator_params,
extra_validator_labels,
)
...
...
@@ -391,6 +392,7 @@ def get_validator_config(
v_max_cpu,
v_min_mem,
v_max_mem,
validator_node_service_name,
extra_params,
extra_labels,
):
...
...
@@ -427,6 +429,7 @@ def get_validator_config(
"--metrics-allow-origin=*",
"--metrics-port={0}".format(VALIDATOR_METRICS_PORT_NUM),
# ^^^^^^^^^^^^^^^^^^^ PROMETHEUS CONFIG ^^^^^^^^^^^^^^^^^^^^^
"--graffiti=" + validator_node_service_name,
]
if len(extra_params):
...
...
src/cl/lodestar/lodestar_launcher.star
View file @
21eae3b5
...
...
@@ -173,6 +173,7 @@ def launch(
v_max_cpu,
v_min_mem,
v_max_mem,
validator_node_service_name,
extra_validator_params,
extra_validator_labels,
)
...
...
@@ -339,6 +340,7 @@ def get_validator_config(
v_max_cpu,
v_min_mem,
v_max_mem,
validator_node_service_name,
extra_params,
extra_labels,
):
...
...
@@ -372,6 +374,7 @@ def get_validator_config(
"--metrics.address=0.0.0.0",
"--metrics.port={0}".format(METRICS_PORT_NUM),
# ^^^^^^^^^^^^^^^^^^^ PROMETHEUS CONFIG ^^^^^^^^^^^^^^^^^^^^^
"--graffiti=" + validator_node_service_name,
]
if len(extra_params) > 0:
...
...
src/cl/prysm/prysm_launcher.star
View file @
21eae3b5
...
...
@@ -381,8 +381,9 @@ def get_validator_config(
# vvvvvvvvvvvvvvvvvvv METRICS CONFIG vvvvvvvvvvvvvvvvvvvvv
"--disable-monitoring=false",
"--monitoring-host=0.0.0.0",
"--monitoring-port={0}".format(VALIDATOR_MONITORING_PORT_NUM)
"--monitoring-port={0}".format(VALIDATOR_MONITORING_PORT_NUM)
,
# ^^^^^^^^^^^^^^^^^^^ METRICS CONFIG ^^^^^^^^^^^^^^^^^^^^^
"--graffiti=" + service_name,
]
if len(extra_params) > 0:
...
...
src/cl/teku/teku_launcher.star
View file @
21eae3b5
...
...
@@ -133,6 +133,7 @@ def launch(
bn_max_mem,
snooper_enabled,
snooper_engine_context,
service_name,
extra_params,
extra_labels,
)
...
...
@@ -190,6 +191,7 @@ def get_config(
bn_max_mem,
snooper_enabled,
snooper_engine_context,
service_name,
extra_params,
extra_labels,
):
...
...
@@ -275,6 +277,7 @@ 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,
]
# 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