forked from billimek/k8s-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalerts.yaml
57 lines (57 loc) · 1.3 KB
/
alerts.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
apiVersion: notification.toolkit.fluxcd.io/v1beta1
kind: Alert
metadata:
name: home-cluster
namespace: flux-system
spec:
providerRef:
name: discord
eventSeverity: info
eventSources:
- kind: GitRepository
name: '*'
- kind: Kustomization
name: '*'
exclusionList:
- "error.*lookup github\\.com"
- "error.*lookup raw\\.githubusercontent\\.com"
- "dial.*tcp.*timeout"
- "waiting.*socket"
- "snapshot-controller configured"
- "snapshot-validation-webhook configured"
- "volsync configured"
- "Health check passed in"
- "Dependencies do not meet ready condition, retrying in 30s"
- "read: connection timed out"
suspend: false
---
apiVersion: notification.toolkit.fluxcd.io/v1beta1
kind: Alert
metadata:
name: helmreleases
namespace: flux-system
spec:
providerRef:
name: discord
eventSeverity: info
eventSources:
- kind: HelmRelease
namespace: 'cert-manager'
name: '*'
- kind: HelmRelease
namespace: 'default'
name: '*'
- kind: HelmRelease
namespace: 'logs'
name: '*'
- kind: HelmRelease
namespace: 'kube-system'
name: '*'
- kind: HelmRelease
namespace: 'monitoring'
name: '*'
- kind: HelmRelease
namespace: 'rook-ceph'
name: '*'
suspend: false