From db30b227fbf00e7cc407e2d8cd2d433f07e18117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20No=C3=ABl?= Date: Mon, 3 Feb 2025 14:50:28 -0800 Subject: [PATCH 1/2] 0.15.1 --- charts/paradedb/Chart.yaml | 4 +-- charts/paradedb/README.md | 2 +- .../paradedb/examples/image-catalog-ref.yaml | 2 +- charts/paradedb/examples/image-catalog.yaml | 2 +- charts/paradedb/examples/paradedb.yaml | 2 +- .../01-paradedb-NCC-1701-D_cluster.yaml | 2 +- .../01-paradedb_cluster.yaml | 2 +- .../01-standalone_cluster.yaml | 29 +++++++++++++++++++ charts/paradedb/values.yaml | 4 +-- 9 files changed, 39 insertions(+), 10 deletions(-) create mode 100644 charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml diff --git a/charts/paradedb/Chart.yaml b/charts/paradedb/Chart.yaml index 054692574..7216b88e1 100644 --- a/charts/paradedb/Chart.yaml +++ b/charts/paradedb/Chart.yaml @@ -20,8 +20,8 @@ icon: https://raw.githubusercontent.com/paradedb/paradedb/main/docs/logo/light.s type: application # The Chart version, set in the publish CI workflow from GitHub Actions Variables -# We default to v0.15.0 for testing and local development -version: 0.15.0 +# We default to v0.15.1 for testing and local development +version: 0.15.1 sources: - https://github.com/paradedb/charts diff --git a/charts/paradedb/README.md b/charts/paradedb/README.md index 015428dad..883388e15 100644 --- a/charts/paradedb/README.md +++ b/charts/paradedb/README.md @@ -312,7 +312,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat | recovery.secret.create | bool | `true` | Whether to create a secret for the backup credentials | | recovery.secret.name | string | `""` | Name of the backup credentials secret | | 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.paradedb | string | `"0.15.1"` | We default to v0.15.1 for testing and local development | | version.postgresql | string | `"17"` | PostgreSQL major version to use | | poolers[].name | string | `` | Name of the pooler resource | | poolers[].instances | number | `1` | The number of replicas we want | diff --git a/charts/paradedb/examples/image-catalog-ref.yaml b/charts/paradedb/examples/image-catalog-ref.yaml index 3f5493184..d9db25ba2 100644 --- a/charts/paradedb/examples/image-catalog-ref.yaml +++ b/charts/paradedb/examples/image-catalog-ref.yaml @@ -2,7 +2,7 @@ type: postgresql mode: standalone version: major: "17" - paradedb: "0.15.0" + paradedb: "0.15.1" cluster: instances: 1 imageCatalogRef: diff --git a/charts/paradedb/examples/image-catalog.yaml b/charts/paradedb/examples/image-catalog.yaml index a2cc81de6..e2999518a 100644 --- a/charts/paradedb/examples/image-catalog.yaml +++ b/charts/paradedb/examples/image-catalog.yaml @@ -2,7 +2,7 @@ type: postgresql mode: standalone version: major: "17" - paradedb: "0.15.0" + paradedb: "0.15.1" cluster: instances: 1 backups: diff --git a/charts/paradedb/examples/paradedb.yaml b/charts/paradedb/examples/paradedb.yaml index a27fcfdee..442e76b75 100644 --- a/charts/paradedb/examples/paradedb.yaml +++ b/charts/paradedb/examples/paradedb.yaml @@ -2,7 +2,7 @@ type: paradedb mode: standalone version: postgresql: "17" - paradedb: "0.15.0" + paradedb: "0.15.1" cluster: instances: 1 backups: diff --git a/charts/paradedb/test/paradedb-enterprise/01-paradedb-NCC-1701-D_cluster.yaml b/charts/paradedb/test/paradedb-enterprise/01-paradedb-NCC-1701-D_cluster.yaml index bf9f92904..829b5e538 100644 --- a/charts/paradedb/test/paradedb-enterprise/01-paradedb-NCC-1701-D_cluster.yaml +++ b/charts/paradedb/test/paradedb-enterprise/01-paradedb-NCC-1701-D_cluster.yaml @@ -2,7 +2,7 @@ type: paradedb-enterprise mode: standalone version: major: "17" - paradedb: "0.15.0" + paradedb: "0.15.1" cluster: instances: 2 storage: diff --git a/charts/paradedb/test/paradedb-minio-backup-restore/01-paradedb_cluster.yaml b/charts/paradedb/test/paradedb-minio-backup-restore/01-paradedb_cluster.yaml index 88bcc85ce..d1d0313fa 100644 --- a/charts/paradedb/test/paradedb-minio-backup-restore/01-paradedb_cluster.yaml +++ b/charts/paradedb/test/paradedb-minio-backup-restore/01-paradedb_cluster.yaml @@ -2,7 +2,7 @@ type: paradedb mode: standalone version: major: "17" - paradedb: "0.15.0" + paradedb: "0.15.1" cluster: instances: 2 storage: diff --git a/charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml b/charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml new file mode 100644 index 000000000..d1d0313fa --- /dev/null +++ b/charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml @@ -0,0 +1,29 @@ +type: paradedb +mode: standalone +version: + major: "17" + paradedb: "0.15.1" +cluster: + instances: 2 + storage: + size: 256Mi + +backups: + enabled: true + provider: s3 + endpointURL: "https://minio.minio.svc.cluster.local" + endpointCA: + name: kube-root-ca.crt + key: ca.crt + wal: + encryption: "" + data: + encryption: "" + s3: + bucket: "mybucket" + path: "/paradedb/v1" + accessKey: "minio" + secretKey: "minio123" + region: "local" + scheduledBackups: [] + retentionPolicy: "30d" diff --git a/charts/paradedb/values.yaml b/charts/paradedb/values.yaml index b686a41e3..54059cf60 100644 --- a/charts/paradedb/values.yaml +++ b/charts/paradedb/values.yaml @@ -15,8 +15,8 @@ version: # -- PostgreSQL major version to use postgresql: "17" # -- 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" + # -- We default to v0.15.1 for testing and local development + paradedb: "0.15.1" ### # -- Cluster mode of operation. Available modes: From 73567b9979e2d2037094324ec78b0c37afd8b294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20No=C3=ABl?= Date: Mon, 3 Feb 2025 14:50:52 -0800 Subject: [PATCH 2/2] Fix rebase --- .../01-standalone_cluster.yaml | 29 ------------------- 1 file changed, 29 deletions(-) delete mode 100644 charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml diff --git a/charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml b/charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml deleted file mode 100644 index d1d0313fa..000000000 --- a/charts/paradedb/test/postgresql-minio-backup-restore/01-standalone_cluster.yaml +++ /dev/null @@ -1,29 +0,0 @@ -type: paradedb -mode: standalone -version: - major: "17" - paradedb: "0.15.1" -cluster: - instances: 2 - storage: - size: 256Mi - -backups: - enabled: true - provider: s3 - endpointURL: "https://minio.minio.svc.cluster.local" - endpointCA: - name: kube-root-ca.crt - key: ca.crt - wal: - encryption: "" - data: - encryption: "" - s3: - bucket: "mybucket" - path: "/paradedb/v1" - accessKey: "minio" - secretKey: "minio123" - region: "local" - scheduledBackups: [] - retentionPolicy: "30d"