From eb455cbf5be41c7c37ea04d71ec60c9c030b9962 Mon Sep 17 00:00:00 2001 From: Gabriele Bartolini Date: Fri, 29 May 2026 15:17:49 +1000 Subject: [PATCH] docs: fix extension name in `timescaledb-oss` README example The `postgresql.extensions` section of the Cluster example used `timescaledb` instead of the correct extension name `timescaledb-oss` (the metadata `name`). The `Database` resource correctly keeps the SQL extension name `timescaledb` (the metadata `sql_name`). Closes #224 Assisted-by: Claude Opus 4.8 Signed-off-by: Gabriele Bartolini --- timescaledb-oss/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/timescaledb-oss/README.md b/timescaledb-oss/README.md index 82af16c..5452e83 100644 --- a/timescaledb-oss/README.md +++ b/timescaledb-oss/README.md @@ -21,8 +21,8 @@ of TimescaleDB with [CloudNativePG](https://cloudnative-pg.io/). ### 1. Add the TimescaleDB extension image to your Cluster -Define the `timescaledb` extension under the `postgresql.extensions` section of -your `Cluster` resource. For example: +Define the `timescaledb-oss` extension under the `postgresql.extensions` section +of your `Cluster` resource. For example: ```yaml apiVersion: postgresql.cnpg.io/v1 @@ -44,7 +44,7 @@ spec: max_locks_per_transaction: '128' extensions: - - name: timescaledb + - name: timescaledb-oss image: # renovate: suite=trixie-pgdg depName=postgresql-18-timescaledb reference: ghcr.io/cloudnative-pg/timescaledb-oss:2.27.1-18-trixie