Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
name: pgdog
version: v0.28
version: v0.29
appVersion: "0.1.21"
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ openMetricsPort: 9090

### Docker Image

Pin to a specific version for production deployments:
By default, the chart uses the `appVersion` from `Chart.yaml` as the image
tag. This ensures the chart deploys a known-compatible version of PgDog
without requiring explicit configuration.

To override with a specific version:

```yaml
image:
Expand All @@ -56,6 +60,17 @@ image:
pullPolicy: IfNotPresent
```

To pin to an exact build, use a digest instead of a tag:

```yaml
image:
repository: ghcr.io/pgdogdev/pgdog
digest: "sha256:abc123def456..." # Immutable reference
pullPolicy: IfNotPresent
```

When `digest` is specified, it takes precedence over `tag`.

**Legacy format** (still supported for backward compatibility):

```yaml
Expand Down
Loading