Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ Every Ansible deployment automatically deploys an observability stack alongside
- If specified, uses `root` user for SSH connections
- Example: `--useRoot` to connect as root user
10. `--tag` specifies the Docker image tag to use for zeam, ream, qlean, lantern, lighthouse, grandine and ethlambda containers.
- If provided, all clients will use this tag (e.g., `blockblaz/zeam:${tag}`, `ghcr.io/reamlabs/ream:${tag}`, `qdrvm/qlean-mini:${tag}`, `piertwo/lantern:${tag}`, `hopinheimer/lighthouse:${tag}`, `sifrai/lean:${tag}`, `ghcr.io/lambdaclass/ethlambda:${tag}`)
- If provided, all clients will use this tag (e.g., `blockblaz/zeam:${tag}`, `ghcr.io/reamlabs/ream:${tag}`, `qdrvm/qlean-mini:${tag}`, `bitminemavan/lantern:${tag}`, `hopinheimer/lighthouse:${tag}`, `sifrai/lean:${tag}`, `ghcr.io/lambdaclass/ethlambda:${tag}`)
- If not provided, defaults to `latest` for zeam, ream, and lantern, and `dd67521` for qlean
- The script will automatically pull the specified Docker images before running containers
- Example: `--tag devnet0` or `--tag devnet1`
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/lantern/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# Note: These are fallback defaults. Actual values are extracted from client-cmds/lantern-cmd.sh
# in the tasks/main.yml file. These defaults are used if extraction fails.

lantern_docker_image: "piertwo/lantern:v0.0.4"
lantern_docker_image: "bitminemavan/lantern:v0.0.4"
deployment_mode: docker # docker or binary

2 changes: 1 addition & 1 deletion ansible/roles/lantern/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- name: Set lantern docker image
set_fact:
lantern_docker_image: "piertwo/lantern:v0.0.4"
lantern_docker_image: "bitminemavan/lantern:v0.0.4"

- name: Extract deployment mode from client-cmd.sh
shell: |
Expand Down
4 changes: 2 additions & 2 deletions client-cmds/lantern-cmd.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

#-----------------------lantern setup----------------------
LANTERN_IMAGE="piertwo/lantern:v0.0.4"
LANTERN_IMAGE="bitminemavan/lantern:v0.0.4"

devnet_flag=""
if [ -n "$devnet" ]; then
Expand Down Expand Up @@ -40,7 +40,7 @@ if [ -z "$httpPort" ]; then
httpPort="5055"
fi

# Lantern's repo: https://github.com/Pier-Two/lantern
# Lantern's repo: https://github.com/bitminetech/lantern
node_binary="$scriptDir/lantern/build/lantern_cli \
--data-dir $dataDir/$item \
--genesis-config $configDir/config.yaml \
Expand Down
Loading