File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8787 - name : Start Zeam container
8888 # TODO: Remove --platform linux/amd64 when blockblaz/zeam:latest multi-platform image is available on Docker Hub
8989 # Multi-platform support is being added in zeam CI (see .github/workflows/ci.yml docker-build-multiarch job)
90+ # Zeam runs two HTTP servers:
91+ # - API server (default 9667): health, SSE events, forkchoice graph, checkpoint state
92+ # - Metrics server (--metrics-port): Prometheus /metrics endpoint
9093 command : >-
9194 docker run -d
9295 --pull=always
106109 --node-id {{ node_name }}
107110 --node-key /config/{{ node_name }}.key
108111 --metrics_enable
109- --api -port {{ zeam_metrics_port }}
112+ --metrics -port {{ zeam_metrics_port }}
110113 register : zeam_container_result
111114 changed_when : zeam_container_result.rc == 0
112115
Original file line number Diff line number Diff line change 33# -----------------------zeam setup----------------------
44# setup where lean-quickstart is a submodule folder in zeam repo
55# update the path to your binary here if you want to use binary
6+ #
7+ # Zeam runs two HTTP servers:
8+ # - API server (default port 9667): health, SSE events, forkchoice graph, checkpoint state
9+ # - Metrics server (--metrics-port): Prometheus /metrics endpoint
10+ #
11+ # The metricsPort from validator-config.yaml is used for the metrics server.
12+ # API server uses the default port 9667 (override with --api-port if needed).
13+ #
614# Metrics enabled by default
715metrics_flag=" --metrics_enable"
816
@@ -24,7 +32,7 @@ node_binary="$scriptDir/../zig-out/bin/zeam node \
2432 --data-dir $dataDir /$item \
2533 --node-id $item --node-key $configDir /$item .key \
2634 $metrics_flag \
27- --api -port $metricsPort \
35+ --metrics -port $metricsPort \
2836 $aggregator_flag \
2937 $checkpoint_sync_flag "
3038
@@ -34,7 +42,7 @@ node_docker="--security-opt seccomp=unconfined blockblaz/zeam:devnet2 node \
3442 --data-dir /data \
3543 --node-id $item --node-key /config/$item .key \
3644 $metrics_flag \
37- --api -port $metricsPort \
45+ --metrics -port $metricsPort \
3846 $aggregator_flag \
3947 $checkpoint_sync_flag "
4048
You can’t perform that action at this time.
0 commit comments