Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -430,8 +430,8 @@ $(cat /etc/postgresql/pg_hba.conf)" > /etc/postgresql/pg_hba.conf
# Add the setting if not found
echo "max_slot_wal_keep_size = -1" >> "$TMP_CONFIG"

# Remove db_user_namespace if upgrading from PG15
if [[ "$OLD_PGVERSION" =~ ^15.* && "$PGVERSION" =~ ^17.* ]]; then
# Remove db_user_namespace if upgrading from PG15 or lower
if [[ "${OLD_PGVERSION%%.*}" -le 15 && "$PGVERSION" =~ ^17.* ]]; then
sed -i '/^db_user_namespace/d' "$TMP_CONFIG"
fi

Expand Down
6 changes: 3 additions & 3 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ postgres_major:

# Full version strings for each major version
postgres_release:
postgresorioledb-17: "17.0.1.085-orioledb"
postgres17: "17.4.1.035"
postgres15: "15.8.1.092"
postgresorioledb-17: "17.0.1.086-orioledb"
postgres17: "17.4.1.036"
postgres15: "15.8.1.093"

# Non Postgres Extensions
pgbouncer_release: "1.19.0"
Expand Down
Loading