Kubegres is a Kubernetes operator allowing to deploy one or many clusters of PostgreSql instances and manage databases replication, failover and backup.
When working with version postgres 14.5 I faced 2 issues, which I managed to solve on my installation
On start postgresql complained with the file /etc/postgres.conf (line 1).
I solved it by removing the empty line (the one at line 1) on the default configuration for /etc/postgres.conf
After a retry I got another issue at line 4
Unrecognized settings at line 4
This was caused by the attempt to set a value for "wal_keep_segments". But as specified here, this property has been renamed to "wal_keep_size" starting version 13 upwards.
I renamed this property and checked the remaining one before giving another try. And it worked
When working with version postgres 14.5 I faced 2 issues, which I managed to solve on my installation
On start postgresql complained with the file /etc/postgres.conf (line 1). I solved it by removing the empty line (the one at line 1) on the default configuration for /etc/postgres.conf
After a retry I got another issue at line 4 Unrecognized settings at line 4 This was caused by the attempt to set a value for "wal_keep_segments". But as specified here, this property has been renamed to "wal_keep_size" starting version 13 upwards.
I renamed this property and checked the remaining one before giving another try. And it worked