Skip to content

Commit 440fb31

Browse files
authored
fix: DNS-1035 label (ethereum#697)
1 parent 9363ea2 commit 440fb31

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/network_launcher/devnet.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def launch(plan, network, prague_time, repo):
1212
name="el_cl_genesis",
1313
)
1414
el_cl_genesis_data_uuid = plan.run_sh(
15-
name="move_genesis_data",
15+
name="move-genesis-data",
1616
description="Creating network configs",
1717
run="mkdir -p /network-configs/ && mv /opt/* /network-configs/",
1818
store=[StoreSpec(src="/network-configs/", name="el_cl_genesis_data")],

src/network_launcher/ephemery.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ el_cl_genesis_data = import_module(
66

77
def launch(plan, prague_time):
88
el_cl_genesis_data_uuid = plan.run_sh(
9-
name="fetch_ephemery_genesis_data",
9+
name="fetch-ephemery-genesis-data",
1010
description="Creating network configs",
1111
run="mkdir -p /network-configs/ && \
1212
curl -o latest.tar.gz https://ephemery.dev/latest.tar.gz && \

src/network_launcher/public_network.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ constants = import_module("../package_io/constants.star")
88
def launch(plan, network, prague_time):
99
# We are running a public network
1010
dummy_genesis_data = plan.run_sh(
11-
name="dummy_genesis_data",
11+
name="dummy-genesis-data",
1212
description="Creating network configs folder",
1313
run="mkdir /network-configs",
1414
store=[StoreSpec(src="/network-configs/", name="el_cl_genesis_data")],

src/network_launcher/shadowfork.star

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def shadowfork_prep(
1515
# overload the network name to remove the shadowfork suffix
1616
if constants.NETWORK_NAME.ephemery in base_network:
1717
chain_id = plan.run_sh(
18-
name="fetch_chain_id",
18+
name="fetch-chain-id",
1919
description="Fetching the chain id",
2020
run="curl -s https://ephemery.dev/latest/config.yaml | yq .DEPOSIT_CHAIN_ID | tr -d '\n'",
2121
image="linuxserver/yq",
@@ -26,7 +26,7 @@ def shadowfork_prep(
2626
base_network
2727
] # overload the network id to match the network name
2828
latest_block = plan.run_sh(
29-
name="fetch_latest_block",
29+
name="fetch-latest-block",
3030
description="Fetching the latest block",
3131
run="mkdir -p /shadowfork && \
3232
curl -o /shadowfork/latest_block.json "

src/package_io/input_parser.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ def deep_copy_participant(participant):
11491149

11501150
def get_public_ip(plan):
11511151
response = plan.run_sh(
1152-
name="get_public_ip",
1152+
name="get-public-ip",
11531153
description="Get the public IP address of the current machine",
11541154
run="curl -s https://ident.me",
11551155
)

src/prelaunch_data_generator/el_cl_genesis/el_cl_genesis_generator.star

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def generate_el_cl_genesis_data(
4747
files[GENESIS_VALUES_PATH] = genesis_generation_config_artifact_name
4848

4949
genesis = plan.run_sh(
50-
name="run_generate_genesis",
50+
name="run-generate-genesis",
5151
description="Creating genesis",
5252
run="cp /opt/values.env /config/values.env && ./entrypoint.sh all && mkdir /network-configs && mv /data/metadata/* /network-configs/",
5353
image=image,
@@ -63,15 +63,15 @@ def generate_el_cl_genesis_data(
6363
)
6464

6565
genesis_validators_root = plan.run_sh(
66-
name="read_genesis_validators_root",
66+
name="read-genesis-validators-root",
6767
description="Reading genesis validators root",
6868
run="cat /data/genesis_validators_root.txt",
6969
files={"/data": genesis.files_artifacts[1]},
7070
wait=None,
7171
)
7272

7373
prague_time = plan.run_sh(
74-
name="read_prague_time",
74+
name="read-prague-time",
7575
description="Reading prague time from genesis",
7676
run="jq .config.pragueTime /data/genesis.json | tr -d '\n'",
7777
image="badouralix/curl-jq",

0 commit comments

Comments
 (0)