Open erikh3 opened 2 years ago
Same issue here!
I used v0.11.0
version of the timescale/timescaledb-single chart from helm repository.
But the version settings did not worked for me.
I had to overwrite the image version:
values.yaml
:
image:
repository: timescaledev/timescaledb-ha
tag: pg12-ts2.0-latest
I was upgrading from v.0.8.2
to v0.10.0
thenv0.11.0
Upgrade from
v0.8.2
->v0.9.0
fails due to new major version of Postgresql does not recognizewal_keep_segments
parameter in/var/lib/postgresql/data/postgresql.conf
.To Reproduce Deploy chart version
v0.8.2
and upgrade tov0.9.0
.Expected behavior Postgresql major version should update from 12 to 13 and
wal_keep_segments
should be replaced withwal_keep_size
.Deployment
values.yaml
:Kubernetes environment:
EKS
Deployment
helm list
:Logs
Logs from last pod from stateful set:
Which causes:
Readiness probe failed: /var/run/postgresql:5432 - no response
Additional context
Running on EKS with 3 timescale pods. Only the last one fails with an error. As a workaround
version: 12
can be set so that Postgresql 12 will be used instead.I tried to edit
/var/lib/postgresql/postgresql.conf
manually, but when pod is recreated this file reverts back to the previous state with an unrecognized option.For now, we upgraded to
v0.10.0
withversion: 12
(Postgresql major version 12).