Skip to content

Commit b58d214

Browse files
committed
bump peam image for cli parity
1 parent b784a76 commit b58d214

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ansible/roles/peam/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Note: These are fallback defaults. Actual values are extracted from client-cmds/peam-cmd.sh
44
# in the tasks/main.yml file. These defaults are used if extraction fails.
55

6-
peam_docker_image: "ghcr.io/malik672/peam:sha-c6d8421"
6+
peam_docker_image: "ghcr.io/malik672/peam:sha-f11c8d1"
77
deployment_mode: docker # docker or binary

ansible/roles/peam/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
- name: Set docker image and deployment mode from client-cmd.sh
2424
set_fact:
25-
peam_docker_image: "{{ peam_docker_image_raw.stdout | trim | default('ghcr.io/malik672/peam:sha-c6d8421') }}"
25+
peam_docker_image: "{{ peam_docker_image_raw.stdout | trim | default('ghcr.io/malik672/peam:sha-f11c8d1') }}"
2626
deployment_mode: "{{ peam_deployment_mode_raw.stdout | trim | default('docker') }}"
2727

2828
- name: Extract node configuration from validator-config.yaml

client-cmds/peam-cmd.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#-----------------------peam setup----------------------
44

55
binary_path="$scriptDir/../Peam/target/release/peam"
6-
default_peam_docker_image="ghcr.io/malik672/peam:sha-c6d8421"
6+
default_peam_docker_image="ghcr.io/malik672/peam:sha-f11c8d1"
77
peam_docker_image="${PEAM_DOCKER_IMAGE:-$default_peam_docker_image}"
88
runtime_config_host="$dataDir/$item/peam.conf"
99
runtime_config_container="/data/peam.conf"
@@ -83,7 +83,7 @@ if [ -d "$hash_sig_keys_dir" ]; then
8383
validator_keys_flag_container="--validator-keys /config/hash-sig-keys"
8484
fi
8585

86-
node_docker="ghcr.io/malik672/peam:sha-c6d8421 \
86+
node_docker="ghcr.io/malik672/peam:sha-f11c8d1 \
8787
--run \
8888
--config $runtime_config_container \
8989
--data-dir /data \
@@ -94,7 +94,7 @@ node_docker="ghcr.io/malik672/peam:sha-c6d8421 \
9494
$checkpoint_sync_flag"
9595

9696
if [ -n "${PEAM_DOCKER_IMAGE:-}" ]; then
97-
node_docker="${peam_docker_image}${node_docker#"ghcr.io/malik672/peam:sha-c6d8421"}"
97+
node_docker="${peam_docker_image}${node_docker#"ghcr.io/malik672/peam:sha-f11c8d1"}"
9898
fi
9999

100100
node_setup="docker"

0 commit comments

Comments
 (0)