feat(helm/kube-prometheus-stack)!: Update 81.5.0 ➼ 82.10.3#4599
Open
tinfoild[bot] wants to merge 1 commit intomainfrom
Open
feat(helm/kube-prometheus-stack)!: Update 81.5.0 ➼ 82.10.3#4599tinfoild[bot] wants to merge 1 commit intomainfrom
tinfoild[bot] wants to merge 1 commit intomainfrom
Conversation
Contributor
Author
kube/helmrelease/out00--- HelmRelease: monitoring/kps Deployment: monitoring/kps-operator
+++ HelmRelease: monitoring/kps Deployment: monitoring/kps-operator
@@ -31,25 +31,25 @@
app: kube-prometheus-stack-operator
app.kubernetes.io/name: kube-prometheus-stack-prometheus-operator
app.kubernetes.io/component: prometheus-operator
spec:
containers:
- name: kube-prometheus-stack
- image: quay.io/prometheus-operator/prometheus-operator:v0.88.1
+ image: quay.io/prometheus-operator/prometheus-operator:v0.89.0
imagePullPolicy: IfNotPresent
args:
- --kubelet-service=kube-system/kps-kubelet
- --kubelet-endpoints=true
- --kubelet-endpointslice=false
- --localhost=127.0.0.1
- - --prometheus-config-reloader=quay.io/prometheus-operator/prometheus-config-reloader:v0.88.1
+ - --prometheus-config-reloader=quay.io/prometheus-operator/prometheus-config-reloader:v0.89.0
- --config-reloader-cpu-request=5m
- --config-reloader-cpu-limit=0
- --config-reloader-memory-request=32M
- --config-reloader-memory-limit=32M
- - --thanos-default-base-image=quay.io/thanos/thanos:v0.40.1
+ - --thanos-default-base-image=quay.io/thanos/thanos:v0.41.0
- --secret-field-selector=type!=kubernetes.io/dockercfg,type!=kubernetes.io/service-account-token,type!=helm.sh/release.v1
- --web.enable-tls=true
- --web.cert-file=/cert/cert
- --web.key-file=/cert/key
- --web.listen-address=:10250
- --web.tls-min-version=VersionTLS13
--- HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-general.rules
+++ HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-general.rules
@@ -48,12 +48,12 @@
other alerts.
This alert fires whenever there's a severity="info" alert, and stops firing when another alert with a
severity of 'warning' or 'critical' starts firing on the same namespace.
This alert should be routed to a null receiver and configured to inhibit alerts with severity="info".
runbook_url: https://runbooks.prometheus-operator.dev/runbooks/general/infoinhibitor
summary: Info-level alert inhibition.
- expr: ALERTS{severity = "info"} == 1 unless on (namespace) ALERTS{alertname
- != "InfoInhibitor", severity =~ "warning|critical", alertstate="firing"} ==
- 1
+ expr: group by (namespace) (ALERTS{severity = "info"} == 1) unless on (namespace)
+ group by (namespace) (ALERTS{alertname != "InfoInhibitor", alertstate = "firing",
+ severity =~ "warning|critical"} == 1)
labels:
severity: none
--- HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-kubernetes-apps
+++ HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-kubernetes-apps
@@ -276,15 +276,22 @@
description: HPA {{ .namespace }}/{{ .horizontalpodautoscaler }}
has been running at max replicas for longer than 15 minutes on cluster {{
.cluster }}.
runbook_url: https://runbooks.prometheus-operator.dev/runbooks/kubernetes/kubehpamaxedout
summary: HPA is running at max replicas
expr: |-
- kube_horizontalpodautoscaler_status_current_replicas{job="kube-state-metrics", namespace=~".*"}
- ==
- kube_horizontalpodautoscaler_spec_max_replicas{job="kube-state-metrics", namespace=~".*"}
+ (
+ kube_horizontalpodautoscaler_status_current_replicas{job="kube-state-metrics", namespace=~".*"}
+ ==
+ kube_horizontalpodautoscaler_spec_max_replicas{job="kube-state-metrics", namespace=~".*"}
+ )
+ and on (namespace, horizontalpodautoscaler) (
+ kube_horizontalpodautoscaler_spec_max_replicas{job="kube-state-metrics", namespace=~".*"}
+ !=
+ kube_horizontalpodautoscaler_spec_min_replicas{job="kube-state-metrics", namespace=~".*"}
+ )
for: 15m
labels:
severity: warning
- alert: KubePdbNotEnoughHealthyPods
annotations:
description: PDB {{ .cluster }}/{{ .namespace }}/{{ .poddisruptionbudget
--- HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-kubernetes-system-kubelet
+++ HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-kubernetes-system-kubelet
@@ -200,14 +200,18 @@
expr: increase(kubelet_server_expiration_renew_errors[5m]) > 0
for: 15m
labels:
severity: warning
- alert: KubeletDown
annotations:
- description: Kubelet has disappeared from Prometheus target discovery.
+ description: Kubelet has disappeared from Prometheus target discovery on cluster
+ {{ .cluster }}.
runbook_url: https://runbooks.prometheus-operator.dev/runbooks/kubernetes/kubeletdown
summary: Target disappeared from Prometheus target discovery.
- expr: absent(up{job="kubelet", metrics_path="/metrics"})
+ expr: |-
+ count by (cluster) (kube_node_info{job="kube-state-metrics"})
+ unless on (cluster)
+ count by (cluster) (up{job="kubelet", metrics_path="/metrics"} == 1)
for: 15m
labels:
severity: critical
--- HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-node-exporter.rules
+++ HelmRelease: monitoring/kps PrometheusRule: monitoring/kps-node-exporter.rules
@@ -74,7 +74,27 @@
record: instance:node_network_receive_drop_excluding_lo:rate5m
- expr: |-
sum without (device) (
rate(node_network_transmit_drop_total{job="node-exporter", device!="lo"}[5m])
)
record: instance:node_network_transmit_drop_excluding_lo:rate5m
+ - expr: |-
+ sum without (device) (
+ rate(node_network_receive_bytes_total{job="node-exporter", device!~"lo|veth.+"}[5m])
+ )
+ record: instance:node_network_receive_bytes_physical:rate5m
+ - expr: |-
+ sum without (device) (
+ rate(node_network_transmit_bytes_total{job="node-exporter", device!~"lo|veth.+"}[5m])
+ )
+ record: instance:node_network_transmit_bytes_physical:rate5m
+ - expr: |-
+ sum without (device) (
+ rate(node_network_receive_drop_total{job="node-exporter", device!~"lo|veth.+"}[5m])
+ )
+ record: instance:node_network_receive_drop_physical:rate5m
+ - expr: |-
+ sum without (device) (
+ rate(node_network_transmit_drop_total{job="node-exporter", device!~"lo|veth.+"}[5m])
+ )
+ record: instance:node_network_transmit_drop_physical:rate5m
--- HelmRelease: monitoring/kps Job: monitoring/kps-admission-create
+++ HelmRelease: monitoring/kps Job: monitoring/kps-admission-create
@@ -30,13 +30,13 @@
heritage: Helm
app.kubernetes.io/name: kube-prometheus-stack-prometheus-operator
app.kubernetes.io/component: prometheus-operator-webhook
spec:
containers:
- name: create
- image: ghcr.io/jkroepke/kube-webhook-certgen:1.7.4
+ image: ghcr.io/jkroepke/kube-webhook-certgen:1.7.8
imagePullPolicy: IfNotPresent
args:
- create
- --host=kps-operator,kps-operator.monitoring.svc
- --namespace=monitoring
- --secret-name=kps-admission
--- HelmRelease: monitoring/kps Job: monitoring/kps-admission-patch
+++ HelmRelease: monitoring/kps Job: monitoring/kps-admission-patch
@@ -30,13 +30,13 @@
heritage: Helm
app.kubernetes.io/name: kube-prometheus-stack-prometheus-operator
app.kubernetes.io/component: prometheus-operator-webhook
spec:
containers:
- name: patch
- image: ghcr.io/jkroepke/kube-webhook-certgen:1.7.4
+ image: ghcr.io/jkroepke/kube-webhook-certgen:1.7.8
imagePullPolicy: IfNotPresent
args:
- patch
- --webhook-name=kps-admission
- --namespace=monitoring
- --secret-name=kps-admission |
32fac70 to
e35afbc
Compare
Deploying jjgadgets-biohazard with
|
| Latest commit: |
8877e74
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a68a4b7c.jjgadgets-biohazard.pages.dev |
| Branch Preview URL: | https://renovate-kube-prometheus-sta-0g19.jjgadgets-biohazard.pages.dev |
e35afbc to
d64b565
Compare
Contributor
Author
kube/kustomization/out00--- kube/deploy/core/monitoring/kps/app Kustomization: flux-system/1-core-monitoring-kps-app HelmRelease: monitoring/kps
+++ kube/deploy/core/monitoring/kps/app Kustomization: flux-system/1-core-monitoring-kps-app HelmRelease: monitoring/kps
@@ -12,13 +12,13 @@
spec:
chart: kube-prometheus-stack
sourceRef:
kind: HelmRepository
name: prometheus-community
namespace: flux-system
- version: 81.5.0
+ version: 82.6.0
driftDetection:
ignore:
- paths:
- /spec/replicas
mode: warn
install: |
d64b565 to
3f7613e
Compare
3f7613e to
10b1b3d
Compare
10b1b3d to
7d7a2a4
Compare
7d7a2a4 to
8e6d3f1
Compare
8e6d3f1 to
1fdf7c8
Compare
1fdf7c8 to
d0d36f8
Compare
9011315 to
be17af5
Compare
be17af5 to
b93cda2
Compare
b93cda2 to
b963297
Compare
b963297 to
c25f170
Compare
c25f170 to
7cda3bc
Compare
7cda3bc to
f174e6f
Compare
f174e6f to
528517a
Compare
528517a to
62f5c04
Compare
62f5c04 to
50c114c
Compare
50c114c to
7828a4e
Compare
7828a4e to
8877e74
Compare
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
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:
81.5.0→82.10.3Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
prometheus-community/helm-charts (kube-prometheus-stack)
v82.10.3Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-82.10.2...kube-prometheus-stack-82.10.3
v82.10.2Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-pingdom-exporter-3.4.2...kube-prometheus-stack-82.10.2
v82.10.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-sql-exporter-0.5.0...kube-prometheus-stack-82.10.1
v82.10.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-nginx-exporter-1.20.1...kube-prometheus-stack-82.10.0
v82.9.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-nginx-exporter-1.20.0...kube-prometheus-stack-82.9.0
v82.8.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-nginx-exporter-1.19.5...kube-prometheus-stack-82.8.0
v82.7.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-82.6.1...kube-prometheus-stack-82.7.0
v82.6.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-82.6.0...kube-prometheus-stack-82.6.1
v82.6.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
b9b15e1by @renovate[bot] in #6697Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-82.5.0...kube-prometheus-stack-82.6.0
v82.5.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-nginx-exporter-1.19.4...kube-prometheus-stack-82.5.0
v82.4.3Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-yet-another-cloudwatch-exporter-0.42.0...kube-prometheus-stack-82.4.3
v82.4.2Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-operator-admission-webhook-0.36.3...kube-prometheus-stack-82.4.2
v82.4.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-28.11.0...kube-prometheus-stack-82.4.1
v82.4.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
New Contributors
Full Changelog: prometheus-community/helm-charts@prometheus-nginx-exporter-1.19.1...kube-prometheus-stack-82.4.0
v82.3.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-82.2.1...kube-prometheus-stack-82.3.0
v82.2.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-snmp-exporter-9.12.1...kube-prometheus-stack-82.2.1
v82.2.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-adapter-5.3.0...kube-prometheus-stack-82.2.0
v82.1.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
New Contributors
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-82.1.0...kube-prometheus-stack-82.1.1
v82.1.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
23085b4by @renovate[bot] in #6656Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-82.0.2...kube-prometheus-stack-82.1.0
v82.0.2Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-fastly-exporter-0.11.0...kube-prometheus-stack-82.0.2
v82.0.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-nginx-exporter-1.19.0...kube-prometheus-stack-82.0.1
v82.0.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-81.6.9...kube-prometheus-stack-82.0.0
v81.6.9Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-81.6.8...kube-prometheus-stack-81.6.9
v81.6.8Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-81.6.7...kube-prometheus-stack-81.6.8
v81.6.7Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-81.6.6...kube-prometheus-stack-81.6.7
v81.6.6Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
New Contributors
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-81.6.5...kube-prometheus-stack-81.6.6
v81.6.5Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-operator-admission-webhook-0.36.2...kube-prometheus-stack-81.6.5
v81.6.4Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-adapter-5.2.1...kube-prometheus-stack-81.6.4
v81.6.3Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
New Contributors
Full Changelog: prometheus-community/helm-charts@alertmanager-1.33.1...kube-prometheus-stack-81.6.3
v81.6.2Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-mongodb-exporter-3.17.0...kube-prometheus-stack-81.6.2
v81.6.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-operator-admission-webhook-0.36.1...kube-prometheus-stack-81.6.1
v81.6.0Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@kube-prometheus-stack-81.5.2...kube-prometheus-stack-81.6.0
v81.5.2Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-pgbouncer-exporter-0.9.1...kube-prometheus-stack-81.5.2
v81.5.1Compare Source
kube-prometheus-stack collects Kubernetes manifests, Grafana dashboards, and Prometheus rules combined with documentation and scripts to provide easy to operate end-to-end Kubernetes cluster monitoring with Prometheus using the Prometheus Operator.
What's Changed
Full Changelog: prometheus-community/helm-charts@prometheus-28.9.0...kube-prometheus-stack-81.5.1
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Renovate Bot.