Skip to content

Commit 1ee5e3c

Browse files
authored
feat: autoreload is now an enum (#15)
* feat: autoreload is now an enum * readme
1 parent e89f511 commit 1ee5e3c

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ apiVersion: v2
22
name: pgdog-control
33
description: PgDog Control
44
type: application
5-
version: 0.2.10
6-
appVersion: "v2026-06-09"
5+
version: 0.2.11
6+
appVersion: "1a6d7fd0"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ control:
648648
evict_after_secs: 60
649649
metrics_retention_secs: 300
650650
query_history_limit: 1000
651-
autoreload: false
651+
autoreload: immediately # or in_sync, or off
652652
```
653653

654654
| Option | Description |
@@ -658,7 +658,7 @@ control:
658658
| `evict_after_secs` | Instance is dropped from the store entirely if its newest metric is older than this (int, default `60`). |
659659
| `metrics_retention_secs` | How much per-instance metric history is kept in memory. Older points are dropped as new ones arrive (int, default `300`). |
660660
| `query_history_limit` | Per-token historical query store capacity. Oldest deduped query entries are evicted first once the limit is reached (int, default `1000`). |
661-
| `autoreload` | Automatically enqueue `reload_configuration` for instances that report config drift (bool, default `false`). |
661+
| `autoreload` | Automatically enqueue `reload_configuration` for instances that report config drift (enum, default `off`, available options: `off`, `immediately`, `in_sync`). |
662662

663663
### Slack Notifications
664664

values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ control:
2323
# via envFrom. Leave empty in EKS — roleArn above is preferred.
2424
accessKeyId: ""
2525
secretAccessKey: ""
26-
sessionToken: "" # optional; only for temporary credentials
26+
sessionToken: "" # optional; only for temporary credentials
2727
# AWS region the SDK should target. Emitted as AWS_REGION on the
2828
# container. Required when the pod isn't on an EKS node whose IMDS
2929
# exposes one.
@@ -103,7 +103,7 @@ control:
103103
# evict_after_secs: 60
104104
# metrics_retention_secs: 300
105105
# query_history_limit: 1000
106-
# autoreload: false
106+
# autoreload: off
107107
helm: {}
108108
# chart: pgdog
109109
# repo: pgdogdev

0 commit comments

Comments
 (0)