Skip to content

Commit 71f6e28

Browse files
authored
fix: re-add images to labels (ethereum#634)
1 parent e33b971 commit 71f6e28

19 files changed

+20
-22
lines changed

src/cl/grandine/grandine_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def get_beacon_config(
409409
labels=shared_utils.label_maker(
410410
constants.CL_TYPE.grandine,
411411
constants.CLIENT_TYPES.cl,
412-
# image,
412+
image,
413413
el_context.client_name,
414414
extra_labels,
415415
),

src/cl/lighthouse/lighthouse_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def get_beacon_config(
405405
labels=shared_utils.label_maker(
406406
constants.CL_TYPE.lighthouse,
407407
constants.CLIENT_TYPES.cl,
408-
# image,
408+
image,
409409
el_context.client_name,
410410
extra_labels,
411411
),

src/cl/lodestar/lodestar_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def get_beacon_config(
391391
labels=shared_utils.label_maker(
392392
constants.CL_TYPE.lodestar,
393393
constants.CLIENT_TYPES.cl,
394-
# image,
394+
image,
395395
el_context.client_name,
396396
extra_labels,
397397
),

src/cl/nimbus/nimbus_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def get_beacon_config(
397397
labels=shared_utils.label_maker(
398398
constants.CL_TYPE.nimbus,
399399
constants.CLIENT_TYPES.cl,
400-
# image,
400+
image,
401401
el_context.client_name,
402402
extra_labels,
403403
),

src/cl/prysm/prysm_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def get_beacon_config(
375375
labels=shared_utils.label_maker(
376376
constants.CL_TYPE.prysm,
377377
constants.CLIENT_TYPES.cl,
378-
# beacon_image,
378+
beacon_image,
379379
el_context.client_name,
380380
extra_labels,
381381
),

src/cl/teku/teku_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def get_beacon_config(
434434
labels=shared_utils.label_maker(
435435
constants.CL_TYPE.teku,
436436
constants.CLIENT_TYPES.cl,
437-
# image,
437+
image,
438438
el_context.client_name,
439439
extra_labels,
440440
),

src/el/besu/besu_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def get_config(
293293
labels=shared_utils.label_maker(
294294
constants.EL_TYPE.besu,
295295
constants.CLIENT_TYPES.el,
296-
# image,
296+
image,
297297
cl_client_name,
298298
extra_labels,
299299
),

src/el/erigon/erigon_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def get_config(
289289
labels=shared_utils.label_maker(
290290
constants.EL_TYPE.erigon,
291291
constants.CLIENT_TYPES.el,
292-
# image,
292+
image,
293293
cl_client_name,
294294
extra_labels,
295295
),

src/el/ethereumjs/ethereumjs_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def get_config(
277277
labels=shared_utils.label_maker(
278278
constants.EL_TYPE.ethereumjs,
279279
constants.CLIENT_TYPES.el,
280-
# image,
280+
image,
281281
cl_client_name,
282282
extra_labels,
283283
),

src/el/geth/geth_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ def get_config(
387387
labels=shared_utils.label_maker(
388388
constants.EL_TYPE.geth,
389389
constants.CLIENT_TYPES.el,
390-
# image,
390+
image,
391391
cl_client_name,
392392
extra_labels,
393393
),

0 commit comments

Comments
 (0)