Add healthcheck to nitro-rpc-client container (#10)

Part of [Create bridge channel in go-nitro](https://www.notion.so/Create-bridge-channel-in-go-nitro-22ce80a0d8ae4edb80020a8f250ea270)

Co-authored-by: Neeraj <neeraj.rtly@gmail.com>
Reviewed-on: #10
Co-authored-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
Co-committed-by: Prathamesh Musale <prathamesh@noreply.git.vdb.to>
This commit is contained in:
Prathamesh Musale 2024-09-17 13:54:17 +00:00 committed by nabarun
parent b3e58e8d74
commit 2826bbd67d
4 changed files with 18 additions and 12 deletions

View File

@ -531,7 +531,7 @@
- Open new terminal, check that no channels exist on L2
```bash
laconic-so deployment --dir bridge-deployment exec nitro-rpc-client "nitro-rpc-client get-all-l2-channels -p 4006 -h nitro-bridge"
laconic-so deployment --dir bridge-deployment exec nitro-rpc-client "nitro-rpc-client get-all-l2-channels -p 4005 -h nitro-bridge"
# Expected output:
# []
@ -636,7 +636,7 @@
- Check status of all L2 mirrored ledger channels
```bash
laconic-so deployment --dir bridge-deployment exec nitro-rpc-client "nitro-rpc-client get-all-l2-channels -p 4006 -h nitro-bridge"
laconic-so deployment --dir bridge-deployment exec nitro-rpc-client "nitro-rpc-client get-all-l2-channels -p 4005 -h nitro-bridge"
# Expected output:
# [

View File

@ -37,7 +37,7 @@ services:
NITRO_SC_PK: ${NITRO_SC_PK}
NITRO_L1_MSG_PORT: ${NITRO_L1_MSG_PORT:-3005}
NITRO_L2_MSG_PORT: ${NITRO_L2_MSG_PORT:-3006}
NITRO_RPC_PORT: ${NITRO_RPC_PORT:-4006}
NITRO_RPC_PORT: ${NITRO_RPC_PORT:-4005}
NITRO_PUBLIC_P2P_HOST: ${NITRO_PUBLIC_P2P_HOST:-127.0.0.1}
NITRO_L1_EXT_MULTIADDR: ${NITRO_L1_EXT_MULTIADDR}
NITRO_L2_EXT_MULTIADDR: ${NITRO_L2_EXT_MULTIADDR}
@ -56,7 +56,7 @@ services:
ports:
- 3005
- 3006
- 4006
- 4005
healthcheck:
test: ["CMD", "nc", "-vz", "localhost", "3006"]
interval: 30s

View File

@ -8,6 +8,12 @@ services:
environment:
NODE_EXTRA_CA_CERTS: "/app/mkcert-caroot/rootCA.pem"
command: ["bash", "-c", "tail -f /dev/null"]
healthcheck:
test: ["CMD-SHELL", "nitro-rpc-client --version -p 4005"]
interval: 30s
timeout: 5s
retries: 10
start_period: 10s
volumes:
- nitro_node_caroot:/app/mkcert-caroot

View File

@ -36,7 +36,7 @@
go-nitro:
- 3005:3005
- 3006:3006
- 4006:4006
- 4005:4005
```
- Create deployment
@ -72,7 +72,7 @@
NITRO_L2_MSG_PORT=3006
# Port to be used by RPC server
NITRO_RPC_PORT=4006
NITRO_RPC_PORT=4005
NITRO_PUBLIC_P2P_HOST=127.0.0.1