forked from nmnellis/vistio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vistio-mesh-only.yaml
216 lines (210 loc) · 5.01 KB
/
vistio-mesh-only.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
---
# Source: vistio/templates/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: vistio-api-config
labels:
heritage: Tiller
chart: "vistio-0.1.0"
app: vistio
release: vistio
data:
vistio.yaml: |-
clusterLevel:
- cluster: istio-mesh
maxVolume: 100
serviceConnections:
- notices:
- name: HighErrorRate
severityThreshold:
error: 0.05
warning: 0.01
statusType: danger
title: '[{{ .value }}] High Error Rate'
prometheusURL: http://prometheus.istio-system:9090
query: sum(rate(istio_request_count[1m])) by (source_service,destination_service,response_code)
source:
label: source_service
status:
dangerRegex: ^5..$
label: response_code
warningRegex: ^4..$
target:
label: destination_service
globalLevel:
clusterConnections:
- prometheusURL: http://prometheus.istio-system:9090
query: sum(rate(istio_request_count[1m])) by (response_code)
source:
replacement: Total Mesh Requests
status:
dangerRegex: ^5..$
label: response_code
warningRegex: ^4..$
target:
replacement: istio-mesh
maxVolume: 100
graphName: Vistio
---
# Source: vistio/templates/service.yaml
apiVersion: v1
kind: Service
metadata:
name: vistio-api
labels:
heritage: Tiller
chart: "vistio-0.1.0"
app: vistio-api
release: vistio
spec:
type: ClusterIP
selector:
app: vistio-api
release: vistio
ports:
- name: http
port: 9091
targetPort: 9091
protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
name: vistio-web
labels:
heritage: Tiller
chart: "vistio-0.1.0"
app: vistio-web
release: vistio
spec:
type: ClusterIP
selector:
app: vistio-web
release: vistio
ports:
- name: http
port: 8080
targetPort: 8080
protocol: TCP
---
# Source: vistio/templates/deployment.yaml
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: vistio-web
labels:
heritage: Tiller
chart: "vistio-0.1.0"
app: vistio-web
release: vistio
spec:
replicas: 1
template:
metadata:
labels:
app: vistio-web
release: vistio
spec:
containers:
- name: vistio
image: "nmnellis/vistio-web:v0.1.0"
imagePullPolicy: Always
ports:
- containerPort: 8080
env:
- name: UPDATE_URL
value: http://localhost:9091/graph
- name: INTERVAL
value: "1000"
- name: MAX_REPLAY_OFFSET
value: "43200"
resources:
{}
---
# Source: vistio/templates/statefulset.yaml
apiVersion: apps/v1beta1
kind: StatefulSet
metadata:
name: vistio-api
labels:
heritage: Tiller
chart: "vistio-0.1.0"
app: vistio-api
release: vistio
spec:
replicas: 1
serviceName: vistio
template:
metadata:
labels:
app: vistio-api
release: vistio
spec:
containers:
- name: vistio-api
image: nmnellis/vistio-api:v0.1.0
imagePullPolicy: IfNotPresent
args:
- --config.file=/etc/vistio/vistio.yaml
- --log.level=info
- --storage.path=/var/vistio/data
- --storage.retention=24h
- --cache.size=100
- --retrieval.scrape-interval=10s
- --retrieval.scrape-timeout=8s
- --api.port=9091
ports:
- containerPort: 9091
livenessProbe:
httpGet:
path: /
port: 9091
initialDelaySeconds: 30
timeoutSeconds: 30
readinessProbe:
httpGet:
path: /
port: 9091
initialDelaySeconds: 30
timeoutSeconds: 30
resources:
{}
volumeMounts:
- name: config
mountPath: /etc/vistio
- name: vistio-db
mountPath: /var/vistio/data
subPath: vistio-db
- name: reloader
image: nghialv2607/k8s-config-reloader:v0.1.0
imagePullPolicy: IfNotPresent
args:
- --config.promviz-reload-url=http://localhost:9091/reload
- --config.promviz-config-dir=/etc/vistio
- --config.log-level=info
resources:
limits:
cpu: 50m
memory: 64Mi
requests:
cpu: 20m
memory: 32Mi
volumeMounts:
- name: config
mountPath: /etc/vistio
volumes:
- name: config
configMap:
name: vistio-api-config
volumeClaimTemplates:
- metadata:
annotations:
volume.beta.kubernetes.io/storage-class: standard
name: vistio-db
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi