Skip to content

Commit 4a80d79

Browse files
authored
Merge branch 'main' into feat/add-tablespaces-support
2 parents 448eec1 + 3c56d04 commit 4a80d79

File tree

7 files changed

+140
-31
lines changed

7 files changed

+140
-31
lines changed

charts/cloudnative-pg/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ name: cloudnative-pg
2121
description: CloudNativePG Operator Helm Chart
2222
icon: https://raw.githubusercontent.com/cloudnative-pg/artwork/main/cloudnativepg-logo.svg
2323
type: application
24-
version: "0.27.0"
24+
version: "0.27.1"
2525
# This is the version number of the application being deployed. This version number should be
2626
# incremented each time you make changes to the application. Versions are not expected to
2727
# follow Semantic Versioning, they should reflect the version the application is using.
2828
# It is recommended to use it with quotes.
29-
appVersion: "1.28.0"
29+
appVersion: "1.28.1"
3030
sources:
3131
- https://github.com/cloudnative-pg/charts
3232
keywords:

charts/cloudnative-pg/README.md

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

charts/cloudnative-pg/templates/crds/crds.yaml

Lines changed: 125 additions & 24 deletions
Large diffs are not rendered by default.

charts/cloudnative-pg/values.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,9 @@ monitoringQueriesConfigMap:
375375
, COALESCE(CAST(CAST('x'||pg_catalog.right(pg_catalog.split_part(last_failed_wal, '.', 1), 16) AS pg_catalog.bit(64)) AS pg_catalog.int8), -1) AS last_failed_wal_start_lsn
376376
, EXTRACT(EPOCH FROM stats_reset) AS stats_reset_time
377377
FROM pg_catalog.pg_stat_archiver
378+
predicate_query: |
379+
SELECT NOT pg_catalog.pg_is_in_recovery()
380+
OR pg_catalog.current_setting('archive_mode') = 'always'
378381
metrics:
379382
- archived_count:
380383
usage: "COUNTER"

charts/plugin-barman-cloud/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ name: plugin-barman-cloud
2121
description: Helm Chart for CloudNativePG's CNPG-I backup plugin using Barman Cloud
2222
icon: https://raw.githubusercontent.com/cloudnative-pg/artwork/main/cloudnativepg-logo.svg
2323
type: application
24-
version: "0.4.0"
25-
appVersion: "v0.10.0"
24+
version: "0.5.0"
25+
appVersion: "v0.11.0"
2626
sources:
2727
- https://github.com/cloudnative-pg/plugin-barman-cloud
2828
keywords:

charts/plugin-barman-cloud/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# plugin-barman-cloud
22

3-
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.10.0](https://img.shields.io/badge/AppVersion-v0.10.0-informational?style=flat-square)
3+
![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.11.0](https://img.shields.io/badge/AppVersion-v0.11.0-informational?style=flat-square)
44

55
Helm Chart for CloudNativePG's CNPG-I backup plugin using Barman Cloud
66

charts/plugin-barman-cloud/templates/crds/crds.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,11 @@ spec:
109109
- key
110110
- name
111111
type: object
112+
useDefaultAzureCredentials:
113+
description: |-
114+
Use the default Azure authentication flow, which includes DefaultAzureCredential.
115+
This allows authentication using environment variables and managed identities.
116+
type: boolean
112117
type: object
113118
data:
114119
description: |-

0 commit comments

Comments
 (0)