Skip to content

Commit 1203b32

Browse files
committed
chore: Adjust all tests to paradedb (#115)
feat: Release 0.15.19 (#116) feat: predicate query tpl interpolation (#117) Upgrade to 0.15.20 Upgrade to 0.15.21 Remove outdated EKS test 0.15.22 Upgrade to 0.15.25 feat: Database and extension management (#121) fix: If the managed extension is pg_search always use the same version as the docker image (#124)
1 parent 2793f1f commit 1203b32

47 files changed

Lines changed: 298 additions & 165 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/paradedb-test-eks.yml

Lines changed: 0 additions & 118 deletions
This file was deleted.

charts/paradedb/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ appVersion: "v0.10.0"
3030
version: 0.0.0-generated-in-ci
3131

3232
# The ParadeDB version, set in the publish CI workflow from the latest paradedb/paradedb GitHub tag
33-
# We default to v0.15.18 for testing and local development
34-
appVersion: 0.15.18
33+
# We default to v0.15.25 for testing and local development
34+
appVersion: 0.15.25
3535

3636
>>>>>>> 2eb5471 (ParadeDB Support (#1)):charts/paradedb/Chart.yaml
3737
sources:

charts/paradedb/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
222222
| cluster.postgresGID | int | `-1` | The GID of the postgres user inside the image, defaults to 26 |
223223
| cluster.postgresUID | int | `-1` | The UID of the postgres user inside the image, defaults to 26 |
224224
| cluster.postgresql.ldap | object | `{}` | PostgreSQL LDAP configuration (see https://cloudnative-pg.io/documentation/current/postgresql_conf/#ldap-configuration) |
225-
| cluster.postgresql.parameters | object | `{"cron.database_name":"postgres"}` | PostgreSQL configuration options (postgresql.conf) |
225+
| cluster.postgresql.parameters | object | `{}` | PostgreSQL configuration options (postgresql.conf) |
226226
| cluster.postgresql.pg_hba | list | `[]` | PostgreSQL Host Based Authentication rules (lines to be appended to the pg_hba.conf file) |
227227
| cluster.postgresql.pg_ident | list | `[]` | PostgreSQL User Name Maps rules (lines to be appended to the pg_ident.conf file) |
228228
| cluster.postgresql.shared_preload_libraries | list | `[]` | Lists of shared preload libraries to add to the default ones |
@@ -291,7 +291,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
291291
| recovery.import.type | string | `"microservice"` | One of `microservice` or `monolith.` See: https://cloudnative-pg.io/documentation/current/database_import/#how-it-works |
292292
| recovery.method | string | `"backup"` | Available recovery methods: * `backup` - Recovers a CNPG cluster from a CNPG backup (PITR supported) Needs to be on the same cluster in the same namespace. * `object_store` - Recovers a CNPG cluster from a barman object store (PITR supported). * `pg_basebackup` - Recovers a CNPG cluster viaa streaming replication protocol. Useful if you want to migrate databases to CloudNativePG, even from outside Kubernetes. * `import` - Import one or more databases from an existing Postgres cluster. |
293293
| recovery.owner | string | `""` | Name of the owner of the database in the instance to be used by applications. Defaults to the value of the `database` key. |
294-
| recovery.pgBaseBackup.database | string | `"paradedb"` | Name of the database used by the application. Default: `app`. |
294+
| recovery.pgBaseBackup.database | string | `"paradedb"` | Name of the database used by the application. Default: `paradedb`. |
295295
| recovery.pgBaseBackup.owner | string | `""` | Name of the owner of the database in the instance to be used by applications. Defaults to the value of the `database` key. |
296296
| recovery.pgBaseBackup.secretName | string | `""` | Name of the kubernetes.io/basic-auth secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch. |
297297
| recovery.pgBaseBackup.source.database | string | `"paradedb"` | |
@@ -366,7 +366,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
366366
| replica.promotionToken | string | `""` | A demotion token generated by an external cluster used to check if the promotion requirements are met. |
367367
| replica.self | string | `""` | Defines the name of this cluster. It is used to determine if this is a primary or a replica cluster, comparing it with primary. Leave empty by default. |
368368
| type | string | `"paradedb"` | Type of the CNPG database. Available types: * `paradedb` * `paradedb-enterprise` |
369-
| version.paradedb | string | `"0.15.18"` | We default to v0.15.18 for testing and local development |
369+
| version.paradedb | string | `"0.15.25"` | We default to v0.15.25 for testing and local development |
370370
| version.postgresql | string | `"17"` | PostgreSQL major version to use |
371371
| poolers[].name | string | `` | Name of the pooler resource |
372372
| poolers[].instances | number | `1` | The number of replicas we want |
@@ -389,4 +389,4 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentat
389389

390390
## License
391391

392-
ParadeDB is licensed under the [GNU Affero General Public License v3.0](LICENSE) and as commercial software. For commercial licensing, please contact us at [sales@paradedb.com](mailto:sales@paradedb.com).
392+
ParadeDB is licensed under the [GNU Affero General Public License v3.0](LICENSE) and as commercial software. For commercial licensing, please contact us at [sales@paradedb.com](mailto:sales@paradedb.com).

charts/paradedb/examples/basic.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type: postgresql
1+
type: paradedb
22
mode: standalone
33
version:
44
postgresql: "17"

charts/paradedb/examples/custom-queries.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type: postgresql
1+
type: paradedb
22
mode: standalone
33

44
cluster:

charts/paradedb/examples/image-catalog-ref.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
type: postgresql
1+
type: paradedb
22
mode: standalone
33
version:
44
major: "17"
5-
paradedb: "0.15.18"
5+
paradedb: "0.15.25"
66
cluster:
77
instances: 1
88
imageCatalogRef:

charts/paradedb/examples/image-catalog.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
type: postgresql
1+
type: paradedb
22
mode: standalone
33
version:
44
major: "17"
5-
paradedb: "0.15.18"
5+
paradedb: "0.15.25"
66
cluster:
77
instances: 1
88
backups:

charts/paradedb/examples/paradedb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ type: paradedb
22
mode: standalone
33
version:
44
postgresql: "17"
5-
paradedb: "0.15.18"
5+
paradedb: "0.15.25"
66
cluster:
77
instances: 1
88
backups:

charts/paradedb/examples/pgbouncer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type: postgresql
1+
type: paradedb
22
mode: standalone
33

44
cluster:

charts/paradedb/examples/recovery-backup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
type: postgresql
1+
type: paradedb
22
mode: recovery
33

44
recovery:

0 commit comments

Comments
 (0)