-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatform-health.example.yaml
More file actions
69 lines (63 loc) · 1.32 KB
/
platform-health.example.yaml
File metadata and controls
69 lines (63 loc) · 1.32 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
components:
# Standalone check
self:
type: tcp
spec:
host: localhost
port: 8080
# Group Google services
google:
type: system
components:
gmail-smtp:
type: tls
spec:
host: smtp.gmail.com
port: 465
detail: true
google.com:
type: http
spec:
url: https://google.com
detail: true
remote:
type: satellite
spec:
host: satellite.example.com
port: 8080
example-grpc:
type: grpc
spec:
host: grpc.example.com
port: 443
cluster:
type: system
components:
podinfo:
type: kubernetes
spec:
kind: Deployment
name: podinfo
namespace: default
cilium:
type: helm
spec:
release: cilium
namespace: kube-system
# Label selector example (discovers resources dynamically)
app-pods:
type: kubernetes
spec:
kind: Pod
namespace: default
labelSelector: "app=myapp"
timeout: 1s
# Ordered execution: runs after all default (order 0) checks complete
# always: true ensures execution even if earlier checks trigger fail-fast
istio-quit:
type: http
order: 1
always: true
spec:
url: http://localhost:15020/quitquitquit
method: POST