20 lines
788 B
YAML
20 lines
788 B
YAML
|
apiVersion: monitoring.coreos.com/v1
|
||
|
kind: PrometheusRule
|
||
|
metadata:
|
||
|
name: {{ printf "%s-%s" (include "kubezero-lib.fullname" $) "zdt-inhibitors" | trunc 63 | trimSuffix "-" }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
{{- include "kubezero-lib.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
groups:
|
||
|
- name: zdt-inhibitors
|
||
|
rules:
|
||
|
- alert: ClusterAutoscalerNodeGroupsEnabled
|
||
|
annotations:
|
||
|
description: "This rule is meant to inhibit other rules and should not be forwarded.\nThe Cluster Autoscaler found at least one node group"
|
||
|
summary: Cluster Autoscaler found at least one node group.
|
||
|
expr: 'cluster_autoscaler_node_groups_count{job="addons-aws-cluster-autoscaler",node_group_type="autoscaled"} > 0'
|
||
|
for: 15m
|
||
|
labels:
|
||
|
severity: none
|