David Sisson

Results 14 comments of David Sisson

``` FROM registry.developers.crunchydata.com/crunchydata/crunchy-postgres:${CRUNCHY_POSTGRES_VERSION} USER root RUN curl -sSL -o /etc/yum.repos.d/timescale_timescaledb.repo "https://packagecloud.io/install/repositories/timescale/timescaledb/config_file.repo?os=el&dist=8" && \ microdnf update -y && \ microdnf install -y timescaledb-2-loader-postgresql-14-2.11.0 && \ microdnf install -y timescaledb-2-postgresql-14-2.11.0 && \...

We ran into this same issue on startup with one backup pod failing. Our validation steps on installation had to be rewritten to ignore the failing pod. A graceful exit...

@linouxis9 thanks for your assistance. I was working too late and mistakenly closed this. This solution will work if crunchydata accepts it.

Another solution to this is to create a custom docker build that replaces the sample config file. Be sure to set the user "USER root" before the change and "USER...

This may be resolved in the latest build by Crunchydata as they updated their documentation to say it is now disabled by default. https://access.crunchydata.com/documentation/postgres-operator/latest/guides/huge-pages/ I'll verify and close out the...

Here is a cut down version with the relevant info. ``` cat

We are using this to shutdown kubectl patch $(k get postgrescluster -o name) --type merge --patch '{"spec":{"shutdown": true}}' No logs to speak of. For taking the node offline we shut...

Specifically we need to be able to set the PATRONI_LOG_FORMAT, PATRONI_LOG_LEVEL, and very likely other environment variables via crunchydata cluster config. The log format is particularly critical because of how...