[postgres] Update postgres to 14.5

Updated postgres binary version to 14.5.

Also replaced deprecated config item wal_keep_segments with wal_keep_size.

Change-Id: Ie86850f8ebb8bfaae4ba5457409d3920b230ce9c
This commit is contained in:
Markin, Sergiy (sm515x) 2022-09-19 17:35:15 -05:00
parent b704608be3
commit ed7e58f4b1
4 changed files with 7 additions and 6 deletions

View File

@ -12,10 +12,10 @@
---
apiVersion: v1
appVersion: v9.6
appVersion: v14.5
description: OpenStack-Helm PostgreSQL
name: postgresql
version: 0.1.17
version: 0.1.18
home: https://www.postgresql.org
sources:
- https://github.com/postgres/postgres

View File

@ -37,4 +37,4 @@ set -x
bash /tmp/archive_cleanup.sh &
exec /docker-entrypoint.sh postgres -c config_file=/tmp/postgresql.conf
exec /usr/local/bin/docker-entrypoint.sh postgres -c config_file=/tmp/postgresql.conf

View File

@ -155,12 +155,12 @@ pod:
# using dockerhub postgresql: https://hub.docker.com/r/library/postgres/tags/
images:
tags:
postgresql: "docker.io/library/postgres:9.6"
postgresql: "docker.io/library/postgres:14.5"
dep_check: quay.io/airshipit/kubernetes-entrypoint:v1.0.0
image_repo_sync: docker.io/library/docker:17.07.0
ks_user: docker.io/openstackhelm/heat:stein-ubuntu_bionic
prometheus_postgresql_exporter: docker.io/wrouesnel/postgres_exporter:v0.4.6
prometheus_postgresql_exporter_create_user: "docker.io/library/postgres:9.5"
prometheus_postgresql_exporter_create_user: "docker.io/library/postgres:14.5"
postgresql_backup: "quay.io/airshipit/porthole-postgresql-utility:latest-ubuntu_bionic"
pull_policy: "IfNotPresent"
local_registry:
@ -309,7 +309,7 @@ conf:
timezone: 'UTC'
track_commit_timestamp: 'on'
track_functions: 'all'
wal_keep_segments: '16'
wal_keep_size: '256'
wal_level: 'hot_standby'
wal_log_hints: 'on'
hba_file: '/tmp/pg_hba.conf'

View File

@ -18,4 +18,5 @@ postgresql:
- 0.1.15 Migrated CronJob resource to batch/v1 API version
- 0.1.16 Added OCI registry authentication
- 0.1.17 Added empty verify_databases_backup_archives() function implementation to match updated backup_databases() function in helm-toolkit
- 0.1.18 Updated postgres to 14.5 and replaced deprecated config item wal_keep_segments with wal_keep_size
...