Skip to content

Commit

Permalink
fix: expose tendermint rpc endpoint on 0.0.0.0 for liveness probe
Browse files Browse the repository at this point in the history
  • Loading branch information
glebiller committed Aug 9, 2022
1 parent b3c3bc0 commit c856306
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/devnet/kubernetes/4-validator/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@ spec:
image: ghcr.io/elesto-dao/elesto:22.217-1659728311-910d4da
args: [
"start",
"--db_backend", "goleveldb",
"--grpc.enable", "false",
"--grpc-web.enable", "false",
"--moniker", "$(MONIKER)",
"--home", "/home/"
"--home", "/home/",
"--log_level", "info",
"--pruning", "everything",
"--rpc.laddr", "tcp://0.0.0.0:26657"
]
env:
- name: MONIKER
Expand Down

0 comments on commit c856306

Please sign in to comment.