From 334c384f72f10769809523338f16338794c36054 Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Thu, 18 Jun 2026 15:12:07 -0700 Subject: [PATCH 1/2] feat: autoreload is now an enum --- Chart.yaml | 4 ++-- README.md | 4 ++-- values.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index 0d83a6d..da2a25b 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: pgdog-control description: PgDog Control type: application -version: 0.2.10 -appVersion: "v2026-06-09" +version: 0.2.11 +appVersion: "1a6d7fd0" diff --git a/README.md b/README.md index 4d55ec7..e40808d 100644 --- a/README.md +++ b/README.md @@ -648,7 +648,7 @@ control: evict_after_secs: 60 metrics_retention_secs: 300 query_history_limit: 1000 - autoreload: false + autoreload: "immediately" # or in_sync ``` | Option | Description | @@ -658,7 +658,7 @@ control: | `evict_after_secs` | Instance is dropped from the store entirely if its newest metric is older than this (int, default `60`). | | `metrics_retention_secs` | How much per-instance metric history is kept in memory. Older points are dropped as new ones arrive (int, default `300`). | | `query_history_limit` | Per-token historical query store capacity. Oldest deduped query entries are evicted first once the limit is reached (int, default `1000`). | -| `autoreload` | Automatically enqueue `reload_configuration` for instances that report config drift (bool, default `false`). | +| `autoreload` | Automatically enqueue `reload_configuration` for instances that report config drift (enum, default `off`, available options: "off", "immediately", "in_sync"). | ### Slack Notifications diff --git a/values.yaml b/values.yaml index d7a6dc0..651757e 100644 --- a/values.yaml +++ b/values.yaml @@ -23,7 +23,7 @@ control: # via envFrom. Leave empty in EKS — roleArn above is preferred. accessKeyId: "" secretAccessKey: "" - sessionToken: "" # optional; only for temporary credentials + sessionToken: "" # optional; only for temporary credentials # AWS region the SDK should target. Emitted as AWS_REGION on the # container. Required when the pod isn't on an EKS node whose IMDS # exposes one. @@ -103,7 +103,7 @@ control: # evict_after_secs: 60 # metrics_retention_secs: 300 # query_history_limit: 1000 - # autoreload: false + # autoreload: off helm: {} # chart: pgdog # repo: pgdogdev From d5405cf989a748b195bea7090e67559d3dbe1b2c Mon Sep 17 00:00:00 2001 From: Lev Kokotov Date: Thu, 18 Jun 2026 15:14:13 -0700 Subject: [PATCH 2/2] readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e40808d..f42bbe6 100644 --- a/README.md +++ b/README.md @@ -648,7 +648,7 @@ control: evict_after_secs: 60 metrics_retention_secs: 300 query_history_limit: 1000 - autoreload: "immediately" # or in_sync + autoreload: immediately # or in_sync, or off ``` | Option | Description | @@ -658,7 +658,7 @@ control: | `evict_after_secs` | Instance is dropped from the store entirely if its newest metric is older than this (int, default `60`). | | `metrics_retention_secs` | How much per-instance metric history is kept in memory. Older points are dropped as new ones arrive (int, default `300`). | | `query_history_limit` | Per-token historical query store capacity. Oldest deduped query entries are evicted first once the limit is reached (int, default `1000`). | -| `autoreload` | Automatically enqueue `reload_configuration` for instances that report config drift (enum, default `off`, available options: "off", "immediately", "in_sync"). | +| `autoreload` | Automatically enqueue `reload_configuration` for instances that report config drift (enum, default `off`, available options: `off`, `immediately`, `in_sync`). | ### Slack Notifications