Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/controlplane-operations/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: controlplane-operations
version: 1.1.6
version: 1.1.7
description: A set of Plutono dashboards and Prometheus alerting rules combined with playbooks to ensure effective operations of Controlplane clusters.
maintainers:
- name: Vladimir Videlov (d051408)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,14 @@ groups:
{{- if not (.Values.prometheusRules.disabled.EtcdKCPBackupSnapshotTooOld | default false) }}
- alert: EtcdKCPBackupSnapshotTooOld
expr: >
( # Alert if the latest full snapshot is older than 2 hours on more than 2 backup pods (we have 3 backup pods, so we alert if 2 or more are affected)
(time() - etcdbr_snapshot_latest_timestamp{kind="Full"}) > 2 * 3600
# Alert if the latest full snapshot is older than 24 hours on all pods
(
(time() - etcdbr_snapshot_latest_timestamp{kind="Full"}) > 24 * 3600
)
AND
on()
count(
(time() - etcdbr_snapshot_latest_timestamp{kind="Full"}) > 2 * 3600
(time() - etcdbr_snapshot_latest_timestamp{kind="Full"}) > 24 * 3600
) > 2
labels:
{{ include "controlplane-operations.additionalRuleLabels" . }}
Expand Down
4 changes: 2 additions & 2 deletions charts/controlplane-operations/plugindefinition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ kind: PluginDefinition
metadata:
name: controlplane-operations
spec:
version: 1.1.6
version: 1.1.7
displayName: Controlplane operations bundle
description: Operations bundle for Controlane clusters
docMarkDownUrl: https://raw.githubusercontent.com/cloudoperators/controlplane-operations/main/README.md
icon: https://raw.githubusercontent.com/cloudoperators/controlplane-operations/main/charts/controlplane-operations/kubernetes-logo.png
helmChart:
name: controlplane-operations
repository: oci://ghcr.io/cloudoperators/controlplane-operations/charts
version: 1.1.6
version: 1.1.7
options:
- name: prometheusRules.create
description: Create Prometheus rules
Expand Down
Loading