-
Notifications
You must be signed in to change notification settings - Fork 0
feat(helm): update chart cloudnative-pg to 0.27.0 #402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/cloudnative-pg-0.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- HelmRelease: database/cloudnative-pg ConfigMap: database/cnpg-default-monitoring
+++ HelmRelease: database/cloudnative-pg ConfigMap: database/cnpg-default-monitoring
@@ -456,6 +456,38 @@
usage: "LABEL"
description: "Name of the setting"
- setting:
usage: "GAUGE"
description: "Setting value"
+ pg_extensions:
+ query: |
+ SELECT
+ current_database() as datname,
+ name as extname,
+ default_version,
+ installed_version,
+ CASE
+ WHEN default_version = installed_version THEN 0
+ ELSE 1
+ END AS update_available
+ FROM pg_catalog.pg_available_extensions
+ WHERE installed_version IS NOT NULL
+ metrics:
+ - datname:
+ usage: "LABEL"
+ description: "Name of the database"
+ - extname:
+ usage: "LABEL"
+ description: "Extension name"
+ - default_version:
+ usage: "LABEL"
+ description: "Default version"
+ - installed_version:
+ usage: "LABEL"
+ description: "Installed version"
+ - update_available:
+ usage: "GAUGE"
+ description: "An update is available"
+ target_databases:
+ - '*'
+
--- HelmRelease: database/cloudnative-pg ClusterRole: database/cloudnative-pg
+++ HelmRelease: database/cloudnative-pg ClusterRole: database/cloudnative-pg
@@ -164,12 +164,22 @@
- patch
- update
- watch
- apiGroups:
- postgresql.cnpg.io
resources:
+ - failoverquorums
+ verbs:
+ - create
+ - delete
+ - get
+ - list
+ - watch
+- apiGroups:
+ - postgresql.cnpg.io
+ resources:
- backups/status
- databases/status
- publications/status
- scheduledbackups/status
- subscriptions/status
verbs:
@@ -193,12 +203,13 @@
- update
- apiGroups:
- postgresql.cnpg.io
resources:
- clusters/status
- poolers/status
+ - failoverquorums/status
verbs:
- get
- patch
- update
- watch
- apiGroups:
--- HelmRelease: database/cloudnative-pg ClusterRole: database/cloudnative-pg-view
+++ HelmRelease: database/cloudnative-pg ClusterRole: database/cloudnative-pg-view
@@ -10,16 +10,20 @@
rules:
- apiGroups:
- postgresql.cnpg.io
resources:
- backups
- clusters
+ - clusters/status
- databases
+ - failoverquorums
- poolers
- publications
- scheduledbackups
+ - imagecatalogs
+ - clusterimagecatalogs
- subscriptions
verbs:
- get
- list
- watch
--- HelmRelease: database/cloudnative-pg ClusterRole: database/cloudnative-pg-edit
+++ HelmRelease: database/cloudnative-pg ClusterRole: database/cloudnative-pg-edit
@@ -10,16 +10,20 @@
rules:
- apiGroups:
- postgresql.cnpg.io
resources:
- backups
- clusters
+ - clusters/status
- databases
+ - failoverquorums
- poolers
- publications
- scheduledbackups
+ - imagecatalogs
+ - clusterimagecatalogs
- subscriptions
verbs:
- create
- delete
- deletecollection
- patch
--- HelmRelease: database/cloudnative-pg Deployment: database/cloudnative-pg
+++ HelmRelease: database/cloudnative-pg Deployment: database/cloudnative-pg
@@ -14,14 +14,14 @@
matchLabels:
app.kubernetes.io/name: cloudnative-pg
app.kubernetes.io/instance: cloudnative-pg
template:
metadata:
annotations:
- checksum/rbac: 642d48218725e6d13cddd0074bbecada81fc6161d1e11809ae4a38b8631abb24
- checksum/monitoring-config: f9ed49e6bb907f4b5ef189c3762306c4c9619d0eb38169dd039c24dc8f10e056
+ checksum/rbac: 6f48838f1f9f8cdeb4dc548698e049c9a873b1009360631bbf51803325bb7fd9
+ checksum/monitoring-config: 78702a85592ff056e51bc5d878636464cd44f04b74ab51af6a10d7542f6e16fb
labels:
app.kubernetes.io/name: cloudnative-pg
app.kubernetes.io/instance: cloudnative-pg
spec:
containers:
- args:
@@ -31,20 +31,20 @@
- --config-map-name=cnpg-controller-manager-config
- --webhook-port=9443
command:
- /manager
env:
- name: OPERATOR_IMAGE_NAME
- value: ghcr.io/cloudnative-pg/cloudnative-pg:1.25.1
+ value: ghcr.io/cloudnative-pg/cloudnative-pg:1.28.0
- name: OPERATOR_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: MONITORING_QUERIES_CONFIGMAP
value: cnpg-default-monitoring
- image: ghcr.io/cloudnative-pg/cloudnative-pg:1.25.1
+ image: ghcr.io/cloudnative-pg/cloudnative-pg:1.28.0
imagePullPolicy: IfNotPresent
livenessProbe:
httpGet:
path: /readyz
port: 9443
scheme: HTTPS
--- HelmRelease: database/cloudnative-pg MutatingWebhookConfiguration: database/cnpg-mutating-webhook-configuration
+++ HelmRelease: database/cloudnative-pg MutatingWebhookConfiguration: database/cnpg-mutating-webhook-configuration
@@ -53,12 +53,33 @@
- admissionReviewVersions:
- v1
clientConfig:
service:
name: cnpg-webhook-service
namespace: database
+ path: /mutate-postgresql-cnpg-io-v1-database
+ port: 443
+ failurePolicy: Fail
+ name: mdatabase.cnpg.io
+ rules:
+ - apiGroups:
+ - postgresql.cnpg.io
+ apiVersions:
+ - v1
+ operations:
+ - CREATE
+ - UPDATE
+ resources:
+ - databases
+ sideEffects: None
+- admissionReviewVersions:
+ - v1
+ clientConfig:
+ service:
+ name: cnpg-webhook-service
+ namespace: database
path: /mutate-postgresql-cnpg-io-v1-scheduledbackup
port: 443
failurePolicy: Fail
name: mscheduledbackup.cnpg.io
rules:
- apiGroups:
--- HelmRelease: database/cloudnative-pg ValidatingWebhookConfiguration: database/cnpg-validating-webhook-configuration
+++ HelmRelease: database/cloudnative-pg ValidatingWebhookConfiguration: database/cnpg-validating-webhook-configuration
@@ -74,12 +74,33 @@
- admissionReviewVersions:
- v1
clientConfig:
service:
name: cnpg-webhook-service
namespace: database
+ path: /validate-postgresql-cnpg-io-v1-database
+ port: 443
+ failurePolicy: Fail
+ name: vdatabase.cnpg.io
+ rules:
+ - apiGroups:
+ - postgresql.cnpg.io
+ apiVersions:
+ - v1
+ operations:
+ - CREATE
+ - UPDATE
+ resources:
+ - databases
+ sideEffects: None
+- admissionReviewVersions:
+ - v1
+ clientConfig:
+ service:
+ name: cnpg-webhook-service
+ namespace: database
path: /validate-postgresql-cnpg-io-v1-pooler
port: 443
failurePolicy: Fail
name: vpooler.cnpg.io
rules:
- apiGroups: |
--- kubernetes/apps/database/cloudnative-pg/app Kustomization: flux-system/cloudnative-pg HelmRelease: database/cloudnative-pg
+++ kubernetes/apps/database/cloudnative-pg/app Kustomization: flux-system/cloudnative-pg HelmRelease: database/cloudnative-pg
@@ -13,13 +13,13 @@
spec:
chart: cloudnative-pg
sourceRef:
kind: HelmRepository
name: cloudnative-pg
namespace: flux-system
- version: 0.23.2
+ version: 0.27.0
dependsOn:
- name: openebs
namespace: storage
install:
remediation:
retries: 3 |
87b6880 to
4ebb6e5
Compare
4ebb6e5 to
199c94d
Compare
199c94d to
6e92dac
Compare
6e92dac to
1b183a9
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.23.2→0.27.0Release Notes
cloudnative-pg/charts (cloudnative-pg)
v0.27.0Compare Source
CloudNativePG Operator Helm Chart
What's Changed
New Contributors
Full Changelog: cloudnative-pg/charts@cluster-v0.4.0...cloudnative-pg-v0.27.0
v0.26.1Compare Source
CloudNativePG Operator Helm Chart
What's Changed
New Contributors
Full Changelog: cloudnative-pg/charts@plugin-barman-cloud-v0.2.0...cloudnative-pg-v0.26.1
v0.26.0Compare Source
CloudNativePG Operator Helm Chart
What's Changed
Full Changelog: cloudnative-pg/charts@cloudnative-pg-v0.25.0...cloudnative-pg-v0.26.0
v0.25.0Compare Source
CloudNativePG Operator Helm Chart
What's Changed
New Contributors
Full Changelog: cloudnative-pg/charts@cloudnative-pg-v0.24.0...cloudnative-pg-v0.25.0
v0.24.0Compare Source
CloudNativePG Operator Helm Chart
What's Changed
charts/cluster/docs/recovery.mdby @atimofeev in #581New Contributors
Full Changelog: cloudnative-pg/charts@cluster-v0.3.1...cloudnative-pg-v0.24.0
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.