-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexec2text.json
59 lines (59 loc) · 1.52 KB
/
exec2text.json
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
{
"metadata": {
"name": "kube-svc-watch",
"namespace": "monitoring",
"annotations": {},
"labels": {"name": "kube-svc-watch"}
},
"apiVersion": "extensions/v1beta1",
"kind": "Deployment",
"spec": {
"template": {
"metadata": {
"annotations": {
"prometheus.io/port": "8080",
"prometheus.io/scrape": "true"
},
"labels": {"name": "kube-svc-watch"}
},
"spec": {
"terminationGracePeriodSeconds": 30,
"imagePullSecrets": {},
"volumes": {},
"containers": [ {
"args": [
"--logtostderr=true",
"--slack-channel=#sre-alerts",
"--slack-token=<redacted>",
"--terminate=true"
],
"image": "gcr.io/bitnami-images/kube-svc-watch:jenkins-sre-k8s-kube-svc-watch-22",
"stdin": false,
"name": "kube-svc-watch",
"tty": false,
"resources": {"limits": {
"memory": "32Mi",
"cpu": "10m"
}},
"env": {},
"ports": [ {
"name": "metrics",
"containerPort": 8080
}],
"command": ["kube-svc-watch"],
"volumeMounts": {}
}]
}
},
"replicas": 1,
"revisionHistoryLimit": 10,
"minReadySeconds": 30,
"strategy": {
"type": "RollingUpdate",
"rollingUpdate": {
"maxSurge": "25%",
"maxUnavailable": "25%"
}
}
}
}