Skip to content

fix: Make externalClusters conditional to prevent null value in standalone mode#165

Merged
ankitml merged 10 commits intodevfrom
fix/external-clusters-null-value
Dec 30, 2025
Merged

fix: Make externalClusters conditional to prevent null value in standalone mode#165
ankitml merged 10 commits intodevfrom
fix/external-clusters-null-value

Conversation

@ankitml
Copy link
Copy Markdown

@ankitml ankitml commented Dec 29, 2025

Summary

Fixes the spec.externalClusters: Invalid value: "null" error that occurs when deploying in standalone mode with backups disabled and using strict YAML validation (server-side apply).

This fix aligns with upstream CloudNativePG charts PR #760 to minimize future rebase conflicts.

Root Cause

When mode: standalone and backups.enabled: false, the generated YAML ends with:

externalClusters:

with no content. Strict YAML parsers interpret this as externalClusters: null instead of an empty array, causing CNPG operator validation to fail.

Changes Made

1. Fixed _external_clusters.tpl

  • Moved externalClusters: field inside conditional logic
  • Standalone mode: only output field if custom clusters defined
  • Recovery/replica modes: always output field with generated config
  • Matches upstream approach while preserving ParadeDB's custom externalClusters feature

2. Updated CI Validation

  • Added --server-side --validate=strict flags to kubectl apply in deploy-cluster action
  • Ensures future CI runs catch similar YAML validation issues

Testing

  • Verified fix works in standalone mode with backups disabled
  • Confirmed recovery and replica modes still work correctly
  • CI tests pass with stricter validation

Related

Updated to match upstream PR cloudnative-pg#760 which fixes the same issue:
- Moved externalClusters field inside conditional in template
- Reverted cluster.yaml to unconditional include
- Preserved ParadeDB-specific custom externalClusters feature

This minimizes future rebase conflicts with upstream while
maintaining backward compatibility with ParadeDB's custom
external cluster configuration.

Related: cloudnative-pg#760
…ment test

The test was failing because paradedb/paradedb:17-v0.15.20 image does not exist on Docker Hub, causing ImagePullBackOff. Updated to use 0.15.21 which exists and is already used in the post-upgrade step.
- Updated from v0.15.20/v0.15.21 to v0.20.5 (latest release)
- Fixed ImagePullBackOff error (v0.15.20 image doesn't exist)
- Updated all test configs and assertions to use v0.20.5
Comment thread charts/paradedb/test/database-management/chainsaw-test.yaml
Comment thread charts/paradedb/test/database-management/02.4-paradedb_extension_check.yaml Outdated
Copy link
Copy Markdown
Member

@philippemnoel philippemnoel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it lgtm aside from all the extension version changes which I don't think should be there

@ankitml ankitml merged commit 53fa37c into dev Dec 30, 2025
25 of 26 checks passed
@ankitml ankitml deleted the fix/external-clusters-null-value branch December 30, 2025 19:20
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test
philippemnoel pushed a commit that referenced this pull request Jan 2, 2026
…alone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test
philippemnoel pushed a commit that referenced this pull request Jan 19, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2
philippemnoel pushed a commit that referenced this pull request Jan 19, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2
philippemnoel pushed a commit that referenced this pull request Jan 20, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2
philippemnoel pushed a commit that referenced this pull request Jan 28, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2
philippemnoel pushed a commit that referenced this pull request Jan 28, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+
philippemnoel pushed a commit that referenced this pull request Feb 8, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+
philippemnoel pushed a commit that referenced this pull request Feb 8, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
philippemnoel pushed a commit that referenced this pull request Feb 9, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
philippemnoel pushed a commit that referenced this pull request Feb 11, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7
philippemnoel pushed a commit that referenced this pull request Feb 13, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8
philippemnoel pushed a commit that referenced this pull request Feb 20, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8
philippemnoel pushed a commit that referenced this pull request Feb 27, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10
philippemnoel pushed a commit that referenced this pull request Mar 2, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10
philippemnoel pushed a commit that referenced this pull request Mar 5, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10
philippemnoel pushed a commit that referenced this pull request Mar 5, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)
philippemnoel pushed a commit that referenced this pull request Mar 6, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase
philippemnoel pushed a commit that referenced this pull request Mar 12, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14
philippemnoel pushed a commit that referenced this pull request Mar 13, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14
philippemnoel pushed a commit that referenced this pull request Mar 16, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0
philippemnoel pushed a commit that referenced this pull request Mar 18, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)
philippemnoel pushed a commit that referenced this pull request Mar 26, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)
philippemnoel pushed a commit that referenced this pull request Mar 26, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3
philippemnoel pushed a commit that referenced this pull request Apr 2, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3
philippemnoel pushed a commit that referenced this pull request Apr 11, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3
philippemnoel pushed a commit that referenced this pull request Apr 11, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6
philippemnoel pushed a commit that referenced this pull request Apr 14, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6
philippemnoel pushed a commit that referenced this pull request Apr 14, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6

fix: resolve merge conflict markers in paradedb Chart.yaml (#189)
philippemnoel pushed a commit that referenced this pull request Apr 16, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6

fix: resolve merge conflict markers in paradedb Chart.yaml (#189)
philippemnoel pushed a commit that referenced this pull request Apr 16, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6

fix: resolve merge conflict markers in paradedb Chart.yaml (#189)

chore: bump ParadeDB to 0.23.0 (#190)
philippemnoel pushed a commit that referenced this pull request Apr 23, 2026
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

ci: AWS EKS LocalStack Tests (#14)

Co-authored-by: Itay Grudev <itay.grudev@essentim.com>
Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

Updated documentation workflows and cleanup (#18)

Revert "Add postgresql default to tests"

This reverts commit a9f340d.

Add repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Configure repository for ParadeDB (#15)

Co-authored-by: Itay Grudev <itay+github.com@grudev.com>

chore: Create artifacthub-repo.yml (#20)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Put artifacthub-repo.yml in the right location

Bug Fix: Tests (#21)

Renamed chart to `paradedb-cluster` (#22)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

Rm .DS_Store

Remove extra HTML tag

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Remove repository_dispatch

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Rename paradedb-cluster to paradedb (#28)

chore: Try with adding missing -cluster (#33)

chore: Final Cleanup (#34)

chore: Remove PostGIS and Timescale (#35)

Using the default UID/GID 999 from the postgres docker image (#26)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Update README and Schema (#37)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): pin sigstore/cosign-installer action to 4959ce0 (cloudnative-pg#403)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rm pgvectorscale (#39)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Add GitHub Actions Workflow to check for typos (#40)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore(deps): update kyverno/action-install-chainsaw action to v0.2.11 (cloudnative-pg#410)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

Rename the default database from app to paradedb (#41)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

docs: Clarify the docs (#42)

Update Depot

Revert "Update Depot"

This reverts commit cb85b81.

feat: Add `pg_cron` and Postgis (#44)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Use the new 0.11.0 release (#47)

feat: Enable monitoring via Prometheus and Grafana (rebased) (#48)

Rm extra files

Remove duplicate block in README

Signed-off-by: Itay Grudev <itay@verito.digital>

Feat recovery.mode=import (#53)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to 0.12.0 (#56)

docs: Update docs following BYOC (#52)
Signed-off-by: Itay Grudev <itay@verito.digital>

ParadeDB Enterprise (#58)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Parallel test execution (#59)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Default to PG17 (#60)

Signed-off-by: Itay Grudev <itay@verito.digital>

Fixed cron database name (#61)

Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

chore: Hardcode version in ParadeDB tests (#66)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Use serviceAccountTemplate from values (#64)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Default to PG17 again (#69)

feat: Upgrade ParadeDB to 0.13.1 (#63)
Signed-off-by: Itay Grudev <itay@verito.digital>

feat: Upgrade to 0.13.2 (#72)

Signed-off-by: Itay Grudev <itay@verito.digital>

test: Upgrade to 0.14.0 & Add test for replication (#75)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.14.1 (#76)

Signed-off-by: Itay Grudev <itay@verito.digital>

chore: Upgrade to 0.15.0 (#80)

chore: Upgrade to 0.15.1 (#81)

feat: Add ScheduledBackups Test (#82)

Swap to Vars for DOCKERHUB_USERNAME

Cleanup

Make pg_analytics optional (#83)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Added pgDumpExtraOptions and pgRestoreExtraOptions (#84)

feat: Expose many externalClusters (#85)

Upgrade to 0.15.2

Upgrade to 0.15.3

Upgrade to 0.15.4

Fix rebase

:# This is a combination of 2 commits.

Upgrade to 0.15.5

fix: Fix CI (#87)

feat: Upgrade to 0.15.6 (#88)

Remove pg_parquet

Rm tar

feat: Release 0.15.7 (#89)

feat: Upgrade to 0.15.8 (#91)

Upgrade to 0.15.9

Update Slack Community invite link

feat: Phil/0.15.11 (#93)

feat: Upgrade to 0.15.12 (#95)

Upgrade missing one

Upgrade to 0.15.13

fix: incorrectly referring to version as appVersion (#99)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.15.14

Upgrade to 0.15.15

Upgrade to 0.15.16

Upgrade to 0.15.17

Adjust cluster to paradedb

Upgrade to 0.15.18

feat: Hot standy feedback (#106)

Co-authored-by: Itay Grudev <itay@verito.digital>

fix: Use encoded version of `hot_standby_feedback` (#108)

Co-authored-by: Itay Grudev <itay@verito.digital>

docs: Added Itay as a codeowner (#109)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

feat: Replica cluster support (#111)

Cleanup README

fix: missing Endpoint CA section in the replica origin objectStore section (#113)

feat: Also install extension when importing via source (#114)

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)

fix: Database CR name should not contain underscores (#125)

Upgrade to 0.16.0

Upgrade to 0.16.1

Upgrade to 0.16.2

Upgrade to 0.16.3

feat: Console pod for long-running tasks (#129)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.16.4

Upgrade to 0.17.0

Upgrade to 0.17.1

Upgrade to 0.17.2

Remove upstream release workflow

Update README to mention PG 14+

Upgrade to 0.17.3

Update codeowners

Upgrade from 0.17.3 to 0.17.4

Upgrade to 0.18.0

ci: typo in console statefulset test name (#138)

Swap to the ParadeDB Bot token

docs: Updated and expanded alert documentation (#137)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Philippe Noël <philippemnoel@gmail.com>

feat: Automatically provisioned logical replication and ParadeDB instrumentation (#142)

Signed-off-by: Itay Grudev <itay+github.com@grudev.com>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.18.2

feat: Always enable instrumentations (#147)

Upgrade to 0.18.3

Upgrade to 0.18.5

Upgrade to 0.18.6

Upgrade to 0.18.8

Upgrade to 0.18.10

Upgrade to 0.19.0

Increase assert timeout to 5m

Default to one instance and explain paradedb enterprise

Fix CI  (#152)

upgrade to 0.19.3

Cleanup the replica test

Double all timeouts in console-statefulset

fix: cleaned up logical replication measurement (#153)

Upgrade to 0.19.4

` This is a combination of 2 commits.

feat: port logical replication alerts (#156)

Ankitml/port grafana dash (#157)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Itay Grudev <itay@verito.digital>
Co-authored-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Upgrade to 0.19.5

Remove lint file that came from a bad rebase

upgrade to 0.20.0

chore: Specify missing enterprise version on replica test (#163)

fix: Make externalClusters conditional to prevent null value in standalone mode (#165)

Post rebase fixes

Bring back Ankit's fix

Properly fix externalcluster

Properly name extension upgrade test

Remove Markdown file left from rebase

Remove Renovate

fix: Fix Replica clusters issues from rebase (#167)

Signed-off-by: Ankit  <573824+ankitml@users.noreply.github.com>
Co-authored-by: Ankit <573824+ankitml@users.noreply.github.com>

Upgrade to 0.21.0

Default to PG18

Keep extension upgrade test on PG17

Add missing upgrade version to 0.21.0

Increase pg_basebackup assert timeout to 8 minutes

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

Be explicit about the need to define the PG major version

Default to 0.21.2

Support PG15+

Swap to Apache-2.0 to match upstream

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>

chore: Fix typos, stale license refs, and dead code (#170)

Signed-off-by: Philippe Noël <philippemnoel@gmail.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Deep cleanup of runbooks and chainsaw tests (#171)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Use correct values paths in origin credential templates (#173)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

test: Add regression test for origin credential templates in replica mode (#174)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

fix: Correct origin-creds templates and fourth cleanup pass (#172)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Bump ParadeDB version to 0.21.6 (#175)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

chore: Final cleanup pass across codebase (#176)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

feat( cluster ): Add pg_stat_statements metrics (#177)

Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

Upgrade to 0.21.7

Upgrade to 0.21.8

Upgrade to 0.21.10

chore(chart): low-priority cleanup and consistency fixes (#183)

fix(chart): critical reliability and templating fixes (#180)

fix(chart): high-priority alert templating and replica secret config (#181)

docs(chart): medium-priority accuracy and maintainability fixes (#182)

Rm cluster/ from bad rebase

Upgrade to 0.21.14

Upgrade to 0.22.0

chore(paradedb): bump version from 0.22.0 to 0.22.1

fix(monitoring): guard against nil pointer in pooler PodMonitor template (#185)

fix(monitoring): use template variable for Prometheus datasource UID (#186)

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

chore: Fix hardcoded dashboard panel (#187)

Upgrade to 0.22.3

Upgrade to 0.22.6

fix: resolve merge conflict markers in paradedb Chart.yaml (#189)

chore: bump ParadeDB to 0.23.0 (#190)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants