From 88c5e7bc84097e347138d47d3e284fd9a5fe6028 Mon Sep 17 00:00:00 2001 From: Itay Grudev Date: Tue, 19 Nov 2024 03:49:19 +0200 Subject: [PATCH] Fixed cron database name (#61) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Philippe Noël chore: Hardcode version in ParadeDB tests (#66) Signed-off-by: Itay Grudev --- charts/paradedb/README.md | 6 ------ charts/paradedb/templates/cluster.yaml | 1 + charts/paradedb/values.yaml | 6 ++---- 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/charts/paradedb/README.md b/charts/paradedb/README.md index 082402eca..2ef996ccc 100644 --- a/charts/paradedb/README.md +++ b/charts/paradedb/README.md @@ -409,15 +409,9 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat | recovery.s3.secretKey | string | `""` | | | recovery.secret.create | bool | `true` | Whether to create a secret for the backup credentials | | recovery.secret.name | string | `""` | Name of the backup credentials secret | -<<<<<<< HEAD | type | string | `"paradedb"` | Type of the CNPG database. Available types: * `paradedb` * `paradedb-enterprise` | | version.paradedb | string | `"0.15.0"` | We default to v0.15.0 for testing and local development | | version.postgresql | string | `"17"` | PostgreSQL major version to use | -======= -| type | string | `"paradedb"` | Type of the CNPG database. Available types: * `paradedb` | -| version.paradedb | string | `"0.11.0"` | We default to v0.11.0 for testing and local development | -| version.postgresql | string | `"16"` | PostgreSQL major version to use | -> 6ea0301 (ParadeDB Support (#1)) | poolers[].name | string | `` | Name of the pooler resource | | poolers[].instances | number | `1` | The number of replicas we want | | poolers[].type | [PoolerType][PoolerType] | `rw` | Type of service to forward traffic to. Default: `rw`. | diff --git a/charts/paradedb/templates/cluster.yaml b/charts/paradedb/templates/cluster.yaml index 1bca8a22a..74f24cd44 100644 --- a/charts/paradedb/templates/cluster.yaml +++ b/charts/paradedb/templates/cluster.yaml @@ -76,6 +76,7 @@ spec: {{- toYaml . | nindent 6 }} {{- end }} {{- with .Values.cluster.postgresql.pg_ident }} + pg_ident: {{- toYaml . | nindent 6 }} {{- end }} diff --git a/charts/paradedb/values.yaml b/charts/paradedb/values.yaml index c9716fee1..a4ba9074c 100644 --- a/charts/paradedb/values.yaml +++ b/charts/paradedb/values.yaml @@ -13,7 +13,7 @@ type: paradedb version: # -- PostgreSQL major version to use - postgresql: "17" + postgresql: "16" # -- The ParadeDB version, set in the publish CI workflow from the latest paradedb/paradedb GitHub tag # -- We default to v0.15.0 for testing and local development paradedb: "0.15.0" @@ -302,9 +302,7 @@ cluster: postgresql: # -- PostgreSQL configuration options (postgresql.conf) - parameters: - # Required by pg_cron - cron.database_name: postgres + parameters: {} # max_connections: 300 # -- Quorum-based Synchronous Replication synchronous: {}