Closed shrinedogg closed 4 months ago
Hi @shrinedogg!
The warning event you're seeing is actually unrelated to pgMonitor. Rather, it is because you are using Postgres 14, which is not included in Crunchy Postgres for Kubernetes (CPK) v5.6.0
release, as made available via the Crunchy Developer Program.
For additional details about exactly what versions of Postgres and CPK are currently supported, I recommend checking out the Supported Platforms page within the CPK docs.
As for what you can do to address the warning, simply switching to Postgres 15 or 16 for any new clusters should address the issue.
Otherwise (e.g. if this really has you stuck within any running PostgresCluster
's, etc.), I'll also note that you can also simply specify a Postgres 14 image directly within your spec (e.g. the image any running Postgres 14 clusters are already using):
apiVersion: postgres-operator.crunchydata.com/v1beta1
kind: PostgresCluster
metadata:
name: hippo-ha
spec:
image: registry.developers.crunchydata.com/crunchydata/crunchy-postgres:ubi8-14.11-0
postgresVersion: 14
However, if you go this route, I also recommend checking out our Major PG Upgrade docs to get onto to a new major version of Postgres ASAP. This will ensure you're able to get the latest Postgres patches and fixes moving forward.
And if you have any additional questions, I recommend reaching out to the PGO community directly via Crunchy's Discord server.
Describe the issue:
Following the
latest
docs from here: https://access.crunchydata.com/documentation/postgres-operator/latestOn MacOS with M1 attempting to create a local
kind: PostgresCluster
from the latest PGO release fails with this error:Here's the manifest for the cluster:
And the HelmRelease for PGO:
This is part of an effort to install and demonstrate the monitoring stack for PGO as an evaluation along with latest
kube-prometheus-stack
, and has proven to be more of a pain than expected. Are there any actual up-to-date docs for this? All I can find is a404
at: https://github.com/CrunchyData/pgmonitor/blob/v5.0.0/v5_upgradeDescribe the expected behavior:
Latest container for
kind: PostgresCluster
deploys normally in local environment on M1 Mac.Tell us about your environment: