Skip to content

Commit

Permalink
Aotumated: Update starship documentation from starship repo
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Oct 7, 2024
1 parent 5b4fc77 commit f6f78f4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pages/starship/config/chains.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -351,3 +351,22 @@ chains:
coins: 100000000000000uion
```

## `readinessProbe` (optional)
The `readinessProbe` directive allows you to set the readiness probe for the chain pods. This is useful when you want to test a chain with specific readiness probe settings.
Note, this is the same as the [kubernetes readiness probe](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)

```yaml
chains:
- id: osmosis-1
name: osmosis
numValidators: 1
readinessProbe:
exec:
command:
- bash
- -c
- |
$CHAIN_BIN status 2>&1 | jq -e '.SyncInfo.catching_up == false'
initialDelaySeconds: 60
periodSeconds: 20
```

0 comments on commit f6f78f4

Please sign in to comment.