Skip to content

Commit

Permalink
fix: playing with liveness probe.
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger committed May 11, 2024
1 parent 9c12480 commit e38adf9
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions process-compose/monza-full-node/process-compose.local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,23 @@ processes:
command: |
./scripts/celestia/celestia-local-appd
readiness_probe:
initial_delay_seconds: 10
initial_delay_seconds: 30
exec:
command: echo "true"
liveness_probe:
initial_delay_seconds: 30
exec:
command: echo "true"

celestia-bridge:
command: |
./scripts/celestia/celestia-local-bridge
readiness_probe:
initial_delay_seconds: 10
initial_delay_seconds: 30
exec:
command: echo "true"
liveness_probe:
initial_delay_seconds: 30
exec:
command: echo "true"
depends_on:
Expand All @@ -32,6 +40,11 @@ processes:
exec:
command: |
echo "true"
liveness_probe:
initial_delay_seconds: 30
exec:
command: |
echo "true"
depends_on:
celestia-node-appd:
condition: process_healthy
Expand Down

0 comments on commit e38adf9

Please sign in to comment.