Skip to content

Commit

Permalink
op-node: da-rpc, namespace-id - use environment flags (#158)
Browse files Browse the repository at this point in the history
* op-node: use global string for da flags

* op-node: use flag name

* testnet: better healthcheck

* testnet: restore rpc flags
  • Loading branch information
tuxcanfly committed Oct 10, 2023
1 parent bce86c6 commit 67225ec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions op-node/flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -290,14 +290,16 @@ var (
var requiredFlags = []cli.Flag{
L1NodeAddr,
L2EngineAddr,
RPCListenAddr,
RPCListenPort,
DaRPC,
NamespaceId,
}

var optionalFlags = []cli.Flag{
RPCListenAddr,
RPCListenPort,
RollupConfig,
DaRPC,
NamespaceId,
Network,
L1TrustRPC,
L1RPCProviderKind,
Expand Down
8 changes: 7 additions & 1 deletion ops-bedrock/docker-compose-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ services:
build:
context: ../
dockerfile: ./op-node/Dockerfile
healthcheck:
test: ["CMD", "wget", "-q", "-O", "-", "http://op-node:8545"]
interval: 5s
timeout: 5s
retries: 5
start_period: 10s
command: >
op-node
--l1=ws://l1:8546
Expand Down Expand Up @@ -141,7 +147,7 @@ services:
- "7301:7300"
- "6545:8545"
healthcheck:
test: ["CMD", "curl", "-f", "http://da:26659/header/1"]
test: ["CMD", "wget", "-q", "-O", "-", "http://da:26659/header/1"]
interval: 5s
timeout: 5s
retries: 5
Expand Down

0 comments on commit 67225ec

Please sign in to comment.