Skip to content

Commit 4f52faa

Browse files
committed
chore: Update to PostgreSQL Operator 1.23.3
1 parent 756c60e commit 4f52faa

File tree

4 files changed

+75
-12
lines changed

4 files changed

+75
-12
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
registry-server: ghcr.io
1919
registry-username: ${{ github.actor }}
2020
image: ${{ github.repository }}
21-
version: 1.23.2
21+
version: 1.23.3
2222
secrets:
2323
pull-request-token: ${{ secrets.GH_ORG_PAT }}

package/config/upstream/cnpg-1.23.2.yaml renamed to package/config/upstream/cnpg-1.23.3.yaml

Lines changed: 71 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14961,11 +14961,12 @@ spec:
1496114961
method:
1496214962
default: barmanObjectStore
1496314963
description: |-
14964-
The backup method to be used, possible options are `barmanObjectStore`
14965-
and `volumeSnapshot`. Defaults to: `barmanObjectStore`.
14964+
The backup method to be used, possible options are `barmanObjectStore`,
14965+
`volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`.
1496614966
enum:
1496714967
- barmanObjectStore
1496814968
- volumeSnapshot
14969+
- plugin
1496914970
type: string
1497014971
online:
1497114972
description: |-
@@ -15205,18 +15206,14 @@ rules:
1520515206
- mutatingwebhookconfigurations
1520615207
verbs:
1520715208
- get
15208-
- list
1520915209
- patch
15210-
- update
1521115210
- apiGroups:
1521215211
- admissionregistration.k8s.io
1521315212
resources:
1521415213
- validatingwebhookconfigurations
1521515214
verbs:
1521615215
- get
15217-
- list
1521815216
- patch
15219-
- update
1522015217
- apiGroups:
1522115218
- apiextensions.k8s.io
1522215219
resources:
@@ -15514,6 +15511,7 @@ data:
1551415511
, pg_catalog.age(datfrozenxid) AS xid_age
1551515512
, pg_catalog.mxid_age(datminmxid) AS mxid_age
1551615513
FROM pg_catalog.pg_database
15514+
WHERE datallowconn
1551715515
metrics:
1551815516
- datname:
1551915517
usage: "LABEL"
@@ -15678,6 +15676,71 @@ data:
1567815676
usage: "COUNTER"
1567915677
description: "Number of buffers allocated"
1568015678

15679+
pg_stat_bgwriter_17:
15680+
runonserver: ">=17.0.0"
15681+
name: pg_stat_bgwriter
15682+
query: |
15683+
SELECT buffers_clean
15684+
, maxwritten_clean
15685+
, buffers_alloc
15686+
, EXTRACT(EPOCH FROM stats_reset) AS stats_reset_time
15687+
FROM pg_catalog.pg_stat_bgwriter
15688+
metrics:
15689+
- buffers_clean:
15690+
usage: "COUNTER"
15691+
description: "Number of buffers written by the background writer"
15692+
- maxwritten_clean:
15693+
usage: "COUNTER"
15694+
description: "Number of times the background writer stopped a cleaning scan because it had written too many buffers"
15695+
- buffers_alloc:
15696+
usage: "COUNTER"
15697+
description: "Number of buffers allocated"
15698+
- stats_reset_time:
15699+
usage: "GAUGE"
15700+
description: "Time at which these statistics were last reset"
15701+
15702+
pg_stat_checkpointer:
15703+
runonserver: ">=17.0.0"
15704+
query: |
15705+
SELECT num_timed AS checkpoints_timed
15706+
, num_requested AS checkpoints_req
15707+
, restartpoints_timed
15708+
, restartpoints_req
15709+
, restartpoints_done
15710+
, write_time
15711+
, sync_time
15712+
, buffers_written
15713+
, EXTRACT(EPOCH FROM stats_reset) AS stats_reset_time
15714+
FROM pg_catalog.pg_stat_checkpointer
15715+
metrics:
15716+
- checkpoints_timed:
15717+
usage: "COUNTER"
15718+
description: "Number of scheduled checkpoints that have been performed"
15719+
- checkpoints_req:
15720+
usage: "COUNTER"
15721+
description: "Number of requested checkpoints that have been performed"
15722+
- restartpoints_timed:
15723+
usage: "COUNTER"
15724+
description: "Number of scheduled restartpoints due to timeout or after a failed attempt to perform it"
15725+
- restartpoints_req:
15726+
usage: "COUNTER"
15727+
description: "Number of requested restartpoints that have been performed"
15728+
- restartpoints_done:
15729+
usage: "COUNTER"
15730+
description: "Number of restartpoints that have been performed"
15731+
- write_time:
15732+
usage: "COUNTER"
15733+
description: "Total amount of time that has been spent in the portion of processing checkpoints and restartpoints where files are written to disk, in milliseconds"
15734+
- sync_time:
15735+
usage: "COUNTER"
15736+
description: "Total amount of time that has been spent in the portion of processing checkpoints and restartpoints where files are synchronized to disk, in milliseconds"
15737+
- buffers_written:
15738+
usage: "COUNTER"
15739+
description: "Number of buffers written during checkpoints and restartpoints"
15740+
- stats_reset_time:
15741+
usage: "GAUGE"
15742+
description: "Time at which these statistics were last reset"
15743+
1568115744
pg_stat_database:
1568215745
query: |
1568315746
SELECT datname
@@ -15866,14 +15929,14 @@ spec:
1586615929
- /manager
1586715930
env:
1586815931
- name: OPERATOR_IMAGE_NAME
15869-
value: ghcr.io/cloudnative-pg/cloudnative-pg:1.23.2
15932+
value: ghcr.io/cloudnative-pg/cloudnative-pg:1.23.3
1587015933
- name: OPERATOR_NAMESPACE
1587115934
valueFrom:
1587215935
fieldRef:
1587315936
fieldPath: metadata.namespace
1587415937
- name: MONITORING_QUERIES_CONFIGMAP
1587515938
value: cnpg-default-monitoring
15876-
image: ghcr.io/cloudnative-pg/cloudnative-pg:1.23.2
15939+
image: ghcr.io/cloudnative-pg/cloudnative-pg:1.23.3
1587715940
livenessProbe:
1587815941
httpGet:
1587915942
path: /readyz

package/vendir.lock.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: vendir.k14s.io/v1alpha1
22
directories:
33
- contents:
44
- githubRelease:
5-
tag: v1.23.2
6-
url: https://api.github.com/repos/cloudnative-pg/cloudnative-pg/releases/160110158
5+
tag: v1.23.3
6+
url: https://api.github.com/repos/cloudnative-pg/cloudnative-pg/releases/167688211
77
path: .
88
path: config/upstream
99
kind: LockConfig

package/vendir.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ directories:
44
- githubRelease:
55
disableAutoChecksumValidation: true
66
slug: cloudnative-pg/cloudnative-pg
7-
tag: v1.23.2
7+
tag: v1.23.3
88
includePaths:
99
- cnpg-*.yaml
1010
path: .

0 commit comments

Comments
 (0)