Skip to content

feat: Console pod for long-running tasks#129

Merged
philippemnoel merged 13 commits intodevfrom
itay/feat/console-statefulset
Jul 12, 2025
Merged

feat: Console pod for long-running tasks#129
philippemnoel merged 13 commits intodevfrom
itay/feat/console-statefulset

Conversation

@itay-grudev
Copy link
Copy Markdown
Collaborator

@itay-grudev itay-grudev commented Jul 3, 2025

Ticket(s) Closed

  • Closes #

What

Adds a console pod that can be used to execute long-running queries and keep track of their output.

Why

How

Preinstalled utilitieson the console pod: postgresql-client screen curl wget jq unzip gzip nano util-linux

Tests

@itay-grudev itay-grudev changed the base branch from main to dev July 3, 2025 02:15
@itay-grudev itay-grudev changed the title Console pod for long-running tasks feat: Console pod for long-running tasks Jul 3, 2025
Comment thread charts/paradedb/templates/NOTES.txt Outdated
Comment thread charts/paradedb/templates/console-statefulset.yaml Outdated
Comment thread charts/paradedb/values.yaml Outdated
@philippemnoel
Copy link
Copy Markdown
Member

@itay-grudev Can you add a test that we can connect to this container, issue a long-running CREATE INDEX statement, disconnect, and then connect again and make sure it is still running?

@itay-grudev
Copy link
Copy Markdown
Collaborator Author

I don't think it's required. The way you would leave a process running here is by executing it with nohup or screen. It won't shutdown, because the pod won't shutdown. This is just a convenience method to provide you with a console pod that has access to the database network.

@itay-grudev
Copy link
Copy Markdown
Collaborator Author

itay-grudev commented Jul 8, 2025

There is one more thing I could do though. I can make the database access credentials available as an environment variable. That should be more convenient and easier to use.

@philippemnoel
Copy link
Copy Markdown
Member

I just want to have as much certainty as possible that this is working and correct. I'd like our test to execute a CREATE INDEX and then shut it down once complete, so we can have strong confidence it is working

itay-grudev and others added 3 commits July 8, 2025 11:11
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
Signed-off-by: Philippe Noël <21990816+philippemnoel@users.noreply.github.com>
@philippemnoel philippemnoel force-pushed the itay/feat/console-statefulset branch from 1c54361 to aaa321e Compare July 8, 2025 15:11
@philippemnoel philippemnoel force-pushed the dev branch 2 times, most recently from 5518404 to 4111690 Compare July 11, 2025 20:49
Comment thread charts/paradedb/test/console-statefulset/chainsaw-test.yaml Outdated
Comment thread charts/paradedb/test/console-statefulset/chainsaw-test.yaml Outdated
Comment thread charts/paradedb/test/console-statefulset/chainsaw-test.yaml Outdated
Comment thread charts/paradedb/test/console-statefulset/01-console_test_cluster.yaml Outdated
Comment thread charts/paradedb/docs/Long-running Tasks.md
Comment thread charts/paradedb/docs/Long-running Tasks.md Outdated
Comment thread charts/paradedb/docs/Long-running Tasks.md Outdated
Comment thread charts/paradedb/templates/console-statefulset.yaml Outdated
philippemnoel pushed a commit that referenced this pull request Jan 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>

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
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>

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)
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.

3 participants