Skip to content

Commit

Permalink
feat(charts/tracoor-single): default to postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
Savid committed Aug 23, 2024
1 parent b5e4714 commit a286d91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions charts/tracoor-single/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ Ethereum debug data capture and indexer
| config.server.addr | string | `":8081"` | |
| config.server.gatewayAddr | string | `":8080"` | |
| config.server.ntpServer | string | `"time.google.com"` | |
| config.server.persistence.driver_name | string | `"sqlite"` | |
| config.server.persistence.dsn | string | `"file:/data/tracoor.db"` | |
| config.server.persistence | object | `{}` | |
| config.server.pprofAddr | string | `":6060"` | |
| config.server.preStopSleepSeconds | int | `1` | |
| config.server.services.indexer.retention.beaconBlocks | string | `"30m"` | |
Expand Down
9 changes: 5 additions & 4 deletions charts/tracoor-single/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ config:
pprofAddr: ":6060"
preStopSleepSeconds: 1
ntpServer: time.google.com
# If postgres is enabled, this block will be overwritten
persistence:
dsn: "file:/data/tracoor.db"
driver_name: sqlite
persistence: {}
# If postgres.enabled = true, this block will be overwritten.
# Example sqlite:
# dsn: "file:/data/tracoor.db"
# driver_name: sqlite
services:
indexer:
retention:
Expand Down

0 comments on commit a286d91

Please sign in to comment.