Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-11-07 15:50:25 +00:00
parent 29dcd46ceb
commit b8a53a76c9
16 changed files with 48 additions and 24 deletions

View File

@ -1,4 +0,0 @@
## [cloudnative-pg-2.0.8](https://github.com/truecharts/charts/compare/cloudnative-pg-2.0.7...cloudnative-pg-2.0.8) (2023-11-07)

View File

@ -4,6 +4,15 @@
## [cloudnative-pg-2.0.9](https://github.com/truecharts/charts/compare/cloudnative-pg-2.0.8...cloudnative-pg-2.0.9) (2023-11-07)
### Fix
- update cnpg helm chart for recent cnpg changes ([#14425](https://github.com/truecharts/charts/issues/14425))
## [cloudnative-pg-2.0.8](https://github.com/truecharts/charts/compare/cloudnative-pg-2.0.7...cloudnative-pg-2.0.8) (2023-11-07)
@ -88,12 +97,3 @@
### Chore
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))
## [cloudnative-pg-1.0.3](https://github.com/truecharts/charts/compare/cloudnative-pg-1.0.2...cloudnative-pg-1.0.3) (2023-06-13)
### Chore
- update helm chart common to 12.14.2 ([#9599](https://github.com/truecharts/charts/issues/9599))

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/cloudnative-pg
- https://cloudnative-pg.io/
type: application
version: 2.0.8
version: 2.0.9
annotations:
truecharts.org/category: operators
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,9 @@
## [cloudnative-pg-2.0.9](https://github.com/truecharts/charts/compare/cloudnative-pg-2.0.8...cloudnative-pg-2.0.9) (2023-11-07)
### Fix
- update cnpg helm chart for recent cnpg changes ([#14425](https://github.com/truecharts/charts/issues/14425))

View File

@ -417,6 +417,16 @@ rbac:
- patch
- update
- watch
- apiGroups:
- snapshot.storage.k8s.io
resources:
- volumesnapshots
verbs:
- create
- get
- list
- patch
- watch
serviceAccount:
main:
@ -543,14 +553,16 @@ configmap:
description: "Time at which postgres started (based on epoch)"
pg_replication:
query: "SELECT CASE WHEN NOT pg_catalog.pg_is_in_recovery()
query: "SELECT CASE WHEN (
NOT pg_catalog.pg_is_in_recovery()
OR pg_catalog.pg_last_wal_receive_lsn() = pg_catalog.pg_last_wal_replay_lsn())
THEN 0
ELSE GREATEST (0,
EXTRACT(EPOCH FROM (now() - pg_catalog.pg_last_xact_replay_timestamp())))
END AS lag,
pg_catalog.pg_is_in_recovery() AS in_recovery,
EXISTS (TABLE pg_stat_wal_receiver) AS is_wal_receiver_up,
(SELECT count(*) FROM pg_stat_replication) AS streaming_replicas"
(SELECT count(*) FROM pg_catalog.pg_stat_replication) AS streaming_replicas"
metrics:
- lag:
usage: "GAUGE"
@ -571,7 +583,10 @@ configmap:
slot_type,
database,
active,
pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), restart_lsn)
(CASE pg_catalog.pg_is_in_recovery()
WHEN TRUE THEN pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_last_wal_receive_lsn(), restart_lsn)
ELSE pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), restart_lsn)
END) as pg_wal_lsn_diff
FROM pg_catalog.pg_replication_slots
WHERE NOT temporary
metrics:
@ -752,6 +767,7 @@ configmap:
SELECT usename
, COALESCE(application_name, '') AS application_name
, COALESCE(client_addr::text, '') AS client_addr
, COALESCE(client_port::text, '') AS client_port
, EXTRACT(EPOCH FROM backend_start) AS backend_start
, COALESCE(pg_catalog.age(backend_xmin), 0) AS backend_xmin_age
, pg_catalog.pg_wal_lsn_diff(pg_catalog.pg_current_wal_lsn(), sent_lsn) AS sent_diff_bytes
@ -772,6 +788,9 @@ configmap:
- client_addr:
usage: "LABEL"
description: "Client IP address"
- client_port:
usage: "LABEL"
description: "Client TCP port"
- backend_start:
usage: "COUNTER"
description: "Time when this process was started"

View File

@ -27,7 +27,7 @@ webhooks:
path: /mutate-postgresql-cnpg-io-v1-backup
port: 443
failurePolicy: {{ .Values.webhook.mutating.failurePolicy }}
name: mbackup.kb.io
name: mbackup.cnpg.io
rules:
- apiGroups:
- postgresql.cnpg.io
@ -48,7 +48,7 @@ webhooks:
path: /mutate-postgresql-cnpg-io-v1-cluster
port: 443
failurePolicy: {{ .Values.webhook.mutating.failurePolicy }}
name: mcluster.kb.io
name: mcluster.cnpg.io
rules:
- apiGroups:
- postgresql.cnpg.io
@ -69,7 +69,7 @@ webhooks:
path: /mutate-postgresql-cnpg-io-v1-scheduledbackup
port: 443
failurePolicy: {{ .Values.webhook.mutating.failurePolicy }}
name: mscheduledbackup.kb.io
name: mscheduledbackup.cnpg.io
rules:
- apiGroups:
- postgresql.cnpg.io

View File

@ -27,7 +27,7 @@ webhooks:
path: /validate-postgresql-cnpg-io-v1-backup
port: 9443
failurePolicy: {{ .Values.webhook.validating.failurePolicy }}
name: vbackup.kb.io
name: vbackup.cnpg.io
rules:
- apiGroups:
- postgresql.cnpg.io
@ -48,7 +48,7 @@ webhooks:
path: /validate-postgresql-cnpg-io-v1-cluster
port: 443
failurePolicy: {{ .Values.webhook.validating.failurePolicy }}
name: vcluster.kb.io
name: vcluster.cnpg.io
rules:
- apiGroups:
- postgresql.cnpg.io
@ -69,7 +69,7 @@ webhooks:
path: /validate-postgresql-cnpg-io-v1-scheduledbackup
port: 443
failurePolicy: {{ .Values.webhook.validating.failurePolicy }}
name: vscheduledbackup.kb.io
name: vscheduledbackup.cnpg.io
rules:
- apiGroups:
- postgresql.cnpg.io
@ -90,7 +90,7 @@ webhooks:
path: /validate-postgresql-cnpg-io-v1-pooler
port: 443
failurePolicy: {{ .Values.webhook.validating.failurePolicy }}
name: vpooler.kb.io
name: vpooler.cnpg.io
rules:
- apiGroups:
- postgresql.cnpg.io