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
75a7accf
Commit
75a7accf
authored
Dec 16, 2022
by
Victor Colombo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Artifact flip
parent
7e7c21ec
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
22 additions
and
22 deletions
+22
-22
grafana_launcher.star
src/grafana/grafana_launcher.star
+2
-2
lighthouse_launcher.star
...articipant_network/cl/lighthouse/lighthouse_launcher.star
+3
-3
lodestar_launcher.star
src/participant_network/cl/lodestar/lodestar_launcher.star
+3
-3
nimbus_launcher.star
src/participant_network/cl/nimbus/nimbus_launcher.star
+2
-2
prysm_launcher.star
src/participant_network/cl/prysm/prysm_launcher.star
+4
-4
teku_launcher.star
src/participant_network/cl/teku/teku_launcher.star
+2
-2
besu_launcher.star
src/participant_network/el/besu/besu_launcher.star
+1
-1
erigon_launcher.star
src/participant_network/el/erigon/erigon_launcher.star
+1
-1
geth_launcher.star
src/participant_network/el/geth/geth_launcher.star
+2
-2
nethermind_launcher.star
...articipant_network/el/nethermind/nethermind_launcher.star
+1
-1
prometheus_launcher.star
src/prometheus/prometheus_launcher.star
+1
-1
No files found.
src/grafana/grafana_launcher.star
View file @
75a7accf
...
...
@@ -57,8 +57,8 @@ def get_config(grafana_config_artifacts_uuid, grafana_dashboards_artifacts_uuid)
ports = USED_PORTS,
env_vars = {CONFIG_DIRPATH_ENV_VAR: GRAFANA_CONFIG_DIRPATH_ON_SERVICE},
files = {
grafana_config_artifacts_uuid : GRAFANA_CONFIG_DIRPATH_ON_SERVICE
,
grafana_dashboards_artifacts_uuid: GRAFANA_DASHBOARDS_DIRPATH_ON_SERVICE
GRAFANA_CONFIG_DIRPATH_ON_SERVICE: grafana_config_artifacts_uuid
,
GRAFANA_DASHBOARDS_DIRPATH_ON_SERVICE: grafana_dashboards_artifacts_uuid
}
)
...
...
src/participant_network/cl/lighthouse/lighthouse_launcher.star
View file @
75a7accf
...
...
@@ -227,7 +227,7 @@ def get_beacon_config(
ports = BEACON_USED_PORTS,
cmd = cmd,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNTPOINT_ON_CLIENTS
GENESIS_DATA_MOUNTPOINT_ON_CLIENTS: genesis_data.files_artifact_uuid
},
env_vars = {
RUST_BACKTRACE_ENVVAR_NAME: RUST_FULL_BACKTRACE_KEYWORD
...
...
@@ -288,8 +288,8 @@ def get_validator_config(
ports = VALIDATOR_USED_PORTS,
cmd = cmd,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNTPOINT_ON_CLIENTS
,
node_keystore_files.files_artifact_uuid: VALIDATOR_KEYS_MOUNTPOINT_ON_CLIENTS
,
GENESIS_DATA_MOUNTPOINT_ON_CLIENTS: genesis_data.files_artifact_uuid
,
VALIDATOR_KEYS_MOUNTPOINT_ON_CLIENTS: node_keystore_files.files_artifact_uuid
,
},
env_vars = {
RUST_BACKTRACE_ENVVAR_NAME: RUST_FULL_BACKTRACE_KEYWORD
...
...
src/participant_network/cl/lodestar/lodestar_launcher.star
View file @
75a7accf
...
...
@@ -203,7 +203,7 @@ def get_beacon_config(
ports = USED_PORTS,
cmd = cmd,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: genesis_data.files_artifact_uuid
},
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
)
...
...
@@ -255,8 +255,8 @@ def get_validator_config(
ports = USED_PORTS,
cmd = cmd,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
,
node_keystore_files.files_artifact_uuid: VALIDATOR_KEYS_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: genesis_data.files_artifact_uuid
,
VALIDATOR_KEYS_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: node_keystore_files.files_artifact_uuid,
},
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
)
...
...
src/participant_network/cl/nimbus/nimbus_launcher.star
View file @
75a7accf
...
...
@@ -211,8 +211,8 @@ def get_config(
cmd = [cmd_str],
entrypoint = ENTRYPOINT_ARGS,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNTPOINT_ON_CLIENT
,
node_keystore_files.files_artifact_uuid: VALIDATOR_KEYS_MOUNTPOINT_ON_CLIENT
GENESIS_DATA_MOUNTPOINT_ON_CLIENT: genesis_data.files_artifact_uuid
,
VALIDATOR_KEYS_MOUNTPOINT_ON_CLIENT: node_keystore_files.files_artifact_uuid
},
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
)
...
...
src/participant_network/cl/prysm/prysm_launcher.star
View file @
75a7accf
...
...
@@ -220,7 +220,7 @@ def get_beacon_config(
ports = BEACON_NODE_USED_PORTS,
cmd = cmd,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
,
GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: genesis_data.files_artifact_uuid
,
},
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
)
...
...
@@ -278,9 +278,9 @@ def get_validator_config(
ports = VALIDATOR_NODE_USED_PORTS,
cmd = cmd,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
,
node_keystore_files.files_artifact_uuid: VALIDATOR_KEYS_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
,
prysm_password_artifact_uuid: PRYSM_PASSWORD_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
,
GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: genesis_data.files_artifact_uuid
,
VALIDATOR_KEYS_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: node_keystore_files.files_artifact_uuid
,
PRYSM_PASSWORD_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: prysm_password_artifact_uuid
,
},
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
)
...
...
src/participant_network/cl/teku/teku_launcher.star
View file @
75a7accf
...
...
@@ -213,8 +213,8 @@ def get_config(
cmd = [cmd_str],
entrypoint = ENTRYPOINT_ARGS,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER
,
node_keystore_files.files_artifact_uuid: VALIDATOR_KEYS_DIRPATH_ON_SERVICE_CONTAINER
GENESIS_DATA_MOUNT_DIRPATH_ON_SERVICE_CONTAINER: genesis_data.files_artifact_uuid
,
VALIDATOR_KEYS_DIRPATH_ON_SERVICE_CONTAINER: node_keystore_files.files_artifact_uuid,
},
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
)
...
...
src/participant_network/el/besu/besu_launcher.star
View file @
75a7accf
...
...
@@ -122,7 +122,7 @@ def get_config(network_id, genesis_data, image, existing_el_clients, log_level,
ports = USED_PORTS,
cmd = [launch_node_command_str],
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_DIRPATH_ON_CLIENT_CONTAINER
GENESIS_DATA_DIRPATH_ON_CLIENT_CONTAINER: genesis_data.files_artifact_uuid
},
entrypoint = ENTRYPOINT_ARGS,
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
...
...
src/participant_network/el/erigon/erigon_launcher.star
View file @
75a7accf
...
...
@@ -123,7 +123,7 @@ def get_config(network_id, genesis_data, image, existing_el_clients, verbosity_l
ports = USED_PORTS,
cmd = [command_arg_str],
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH
GENESIS_DATA_MOUNT_DIRPATH: genesis_data.files_artifact_uuid
},
entrypoint = ENTRYPOINT_ARGS,
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
...
...
src/participant_network/el/geth/geth_launcher.star
View file @
75a7accf
...
...
@@ -170,8 +170,8 @@ def get_config(network_id, genesis_data, prefunded_geth_keys_artifact_uuid, pref
ports = USED_PORTS,
cmd = [command_str],
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH
,
prefunded_geth_keys_artifact_uuid: PREFUNDED_KEYS_MOUNT_DIRPATH
GENESIS_DATA_MOUNT_DIRPATH: genesis_data.files_artifact_uuid
,
PREFUNDED_KEYS_MOUNT_DIRPATH: prefunded_geth_keys_artifact_uuid
},
entrypoint = ENTRYPOINT_ARGS,
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER
...
...
src/participant_network/el/nethermind/nethermind_launcher.star
View file @
75a7accf
...
...
@@ -117,7 +117,7 @@ def get_config(genesis_data, image, existing_el_clients, log_level, extra_params
ports = USED_PORTS,
cmd = command_args,
files = {
genesis_data.files_artifact_uuid: GENESIS_DATA_MOUNT_DIRPATH
GENESIS_DATA_MOUNT_DIRPATH: genesis_data.files_artifact_uuid,
},
private_ip_address_placeholder = PRIVATE_IP_ADDRESS_PLACEHOLDER,
)
...
...
src/prometheus/prometheus_launcher.star
View file @
75a7accf
...
...
@@ -42,7 +42,7 @@ def get_config(config_files_artifact_uuid):
image = IMAGE_NAME,
ports = USED_PORTS,
files = {
config_files_artifact_uuid : CONFIG_DIR_MOUNTPOINT_ON_PROMETHEUS
CONFIG_DIR_MOUNTPOINT_ON_PROMETHEUS: config_files_artifact_uuid
},
cmd = [
# You can check all the cli flags starting the container and going to the flags section
...
...
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