chore(helm): Urge users to upgrade to latest pg, even if 15 is supported

Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com>
This commit is contained in:
rjshrjndrn 2024-09-12 04:13:06 +02:00
parent 98323e2634
commit 0fa46bdb3c

View file

@ -159,7 +159,7 @@ spec:
- |
pg_version=$(psql -c "SHOW server_version;" | xargs | grep -oP '\d+(?=\.)')
if [[ $pg_version -le 14 ]]; then
echo "[error] postgresql version is $pg_version which is < 15. Exiting."
echo "[error] postgresql version is $pg_version which is < 16. Exiting."
For upgrade steps, refer: https://docs.openreplay.com/en/deployment/openreplay-admin/#upgrade-postgresql
exit 101
fi