-
Notifications
You must be signed in to change notification settings - Fork 1
/
cluster.yaml
378 lines (373 loc) · 12 KB
/
cluster.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
apiVersion: v1
kind: Service
metadata:
name: pouw-net
labels:
app: pouw
spec:
clusterIP: None
selector:
app: pouw
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: pouw-miner
spec:
serviceName: "pouw-miners"
replicas: 3
selector:
matchLabels:
app: pouw
template:
metadata:
labels:
app: pouw
spec:
volumes:
- name: pouw-pv-storage
persistentVolumeClaim:
claimName: pouw-pv-claim
- name: pouw-bucket-pv-storage
persistentVolumeClaim:
claimName: pouw-bucket-pv-claim
- name: paicoin-datadir
emptyDir: {}
- name: paicoin-config
configMap:
name: paicoin-config-map
items:
- key: chainparams.conf
path: chainparams.conf
- key: paicoin.conf
path: paicoin.conf
containers:
- name: pouw-miner
image: pouw-consensus:dev
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: "/usr/share/pouw-bucket"
name: pouw-bucket-pv-storage
- mountPath: /root/.paicoin
name: paicoin-config
lifecycle:
postStart:
exec:
command: ["/bin/sh", "-c", "echo $MY_POD_IP $MY_POD_NAME $MY_ROLE >> /usr/share/pouw-data/nodes"]
preStop:
exec:
command: ["/bin/sh","-c","sed -i /^$MY_POD_IP/d /usr/share/pouw-data/nodes"]
env:
- name: MY_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: MY_ROLE
value: "miner"
- name: PAICOIND_IP
valueFrom:
configMapKeyRef:
name: settings-map
key: PAICOIND_IP
- name: REDIS_PORT
valueFrom:
configMapKeyRef:
name: settings-map
key: REDIS_PORT
- name: POUW_BUCKET
valueFrom:
configMapKeyRef:
name: settings-map
key: POUW_BUCKET
command: ["/bin/sh", "-c"]
args: ["while [ -z \"${REDIS_HOST}\" ]; do REDIS_HOST=$(sed '/supervisor/!d;q' /usr/share/pouw-data/nodes | sed 's/ .*//'); sleep 5; done && echo \"export REDIS_HOST=\"$REDIS_HOST\"\" >> ~/.bashrc && python3 /opt/main-iteration/pai/pouw/nodes/decentralized/worker.py --redis-host $REDIS_HOST --redis-port $REDIS_PORT --server-ip $PAICOIND_IP --paicoin-cfg-file /root/.paicoin/paicoin.conf --debug True"]
imagePullPolicy: Never
- name: pouw-miner-verifier
image: pouw-consensus:dev
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: "/usr/share/pouw-bucket"
name: pouw-bucket-pv-storage
env:
- name: REDIS_PORT
valueFrom:
configMapKeyRef:
name: settings-map
key: REDIS_PORT
- name: POUW_BUCKET
valueFrom:
configMapKeyRef:
name: settings-map
key: POUW_BUCKET
command: ["/bin/sh", "-c"]
args: ["while [ -z \"${REDIS_HOST}\" ]; do REDIS_HOST=$(sed '/supervisor/!d;q' /usr/share/pouw-data/nodes | sed 's/ .*//'); sleep 5; done && echo \"export REDIS_HOST=\"$REDIS_HOST\"\" >> ~/.bashrc && python3 /opt/main-iteration/pai/pouw/verification/server.py --redis-host $REDIS_HOST --redis-port $REDIS_PORT"]
imagePullPolicy: Never
- name: pouw-miner-blockchain
image: pouw-blockchain:dev
command: ["/bin/sh", "-c"]
args: ["paicoind -mine-genesis-block && paicoind -add-nodes=/usr/share/pouw-data/nodes -own-ip=$MY_POD_IP"]
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: /root/data
name: paicoin-datadir
- mountPath: /root/.paicoin
name: paicoin-config
env:
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
imagePullPolicy: Never
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: pouw-supervisor
spec:
serviceName: "pouw-supervisors"
replicas: 3
selector:
matchLabels:
app: pouw
template:
metadata:
labels:
app: pouw
spec:
volumes:
- name: pouw-pv-storage
persistentVolumeClaim:
claimName: pouw-pv-claim
- name: pouw-bucket-pv-storage
persistentVolumeClaim:
claimName: pouw-bucket-pv-claim
- name: redis-datadir
emptyDir: {}
- name: redis-conf
configMap:
name: redis-config-map
items:
- key: redis.conf
path: redis.conf
- name: paicoin-datadir
emptyDir: {}
- name: paicoin-config
configMap:
name: paicoin-config-map
items:
- key: chainparams.conf
path: chainparams.conf
- key: paicoin.conf
path: paicoin.conf
containers:
- name: pouw-supervisor
image: pouw-consensus:dev
command: ["/bin/sh", "-c"]
args: [ 'while true; do sleep 30; echo "Supervising..."; done;' ]
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: "/usr/share/pouw-bucket"
name: pouw-bucket-pv-storage
lifecycle:
postStart:
exec:
command: ["/bin/sh", "-c", "echo $MY_POD_IP $MY_POD_NAME $MY_ROLE >> /usr/share/pouw-data/nodes"]
preStop:
exec:
command: ["/bin/sh","-c","sed -i /^$MY_POD_IP/d /usr/share/pouw-data/nodes"]
imagePullPolicy: Never
env:
- name: MY_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: MY_ROLE
value: "supervisor"
- name: POUW_BUCKET
valueFrom:
configMapKeyRef:
name: settings-map
key: POUW_BUCKET
- name: pouw-supervisor-redis
image: redis:alpine
ports:
- containerPort: 6379
command:
- redis-server
- "/conf/redis.conf"
volumeMounts:
- mountPath: /datadir
name: redis-datadir
- mountPath: /conf
name: redis-conf
imagePullPolicy: IfNotPresent
- name: pouw-supervisor-verifier
image: pouw-consensus:dev
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: "/usr/share/pouw-bucket"
name: pouw-bucket-pv-storage
env:
- name: REDIS_PORT
valueFrom:
configMapKeyRef:
name: settings-map
key: REDIS_PORT
- name: POUW_BUCKET
valueFrom:
configMapKeyRef:
name: settings-map
key: POUW_BUCKET
command: ["/bin/sh", "-c"]
args: ["while [ -z \"${REDIS_HOST}\" ]; do REDIS_HOST=$(sed '/supervisor/!d;q' /usr/share/pouw-data/nodes | sed 's/ .*//'); sleep 5; done && echo \"export REDIS_HOST=\"$REDIS_HOST\"\" >> ~/.bashrc && python3 /opt/main-iteration/pai/pouw/verification/server.py --redis-host $REDIS_HOST --redis-port $REDIS_PORT"]
imagePullPolicy: Never
- name: pouw-supervisor-blockchain
image: pouw-blockchain:dev
command: ["/bin/sh", "-c"]
args: ["paicoind -mine-genesis-block && paicoind -add-nodes=/usr/share/pouw-data/nodes -own-ip=$MY_POD_IP"]
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: /root/data
name: paicoin-datadir
- mountPath: /root/.paicoin
name: paicoin-config
env:
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
imagePullPolicy: Never
---
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: pouw-client
spec:
serviceName: "pouw-clients"
replicas: 1
selector:
matchLabels:
app: pouw
template:
metadata:
labels:
app: pouw
spec:
volumes:
- name: pouw-pv-storage
persistentVolumeClaim:
claimName: pouw-pv-claim
- name: pouw-bucket-pv-storage
persistentVolumeClaim:
claimName: pouw-bucket-pv-claim
- name: paicoin-datadir
emptyDir: {}
- name: paicoin-config
configMap:
name: paicoin-config-map
items:
- key: chainparams.conf
path: chainparams.conf
- key: paicoin.conf
path: paicoin.conf
- name: run-client
configMap:
name: run-client-map
items:
- key: run-client.sh
path: run-client.sh
- key: task-definition.yaml
path: task-definition.yaml
containers:
- name: pouw-client
image: pouw-consensus:dev
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: "/usr/share/pouw-bucket"
name: pouw-bucket-pv-storage
- mountPath: "/app"
name: run-client
lifecycle:
postStart:
exec:
command: ["/bin/sh", "-c", "echo $MY_POD_IP $MY_POD_NAME $MY_ROLE >> /usr/share/pouw-data/nodes"]
preStop:
exec:
command: ["/bin/sh","-c","sed -i /^$MY_POD_IP/d /usr/share/pouw-data/nodes"]
env:
- name: MY_POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: MY_ROLE
value: "client"
- name: REDIS_PORT
valueFrom:
configMapKeyRef:
name: settings-map
key: REDIS_PORT
- name: POUW_BUCKET
valueFrom:
configMapKeyRef:
name: settings-map
key: POUW_BUCKET
command: ["/bin/sh", "-c"]
args: ["while [ -z \"${REDIS_HOST}\" ]; do REDIS_HOST=$(sed '/supervisor/!d;q' /usr/share/pouw-data/nodes | sed 's/ .*//'); sleep 5; done && echo \"export REDIS_HOST=\"$REDIS_HOST\"\" >> ~/.bashrc && /bin/bash -c \"trap : TERM INT; sleep infinity & wait\""]
imagePullPolicy: Never
- name: pouw-client-verifier
image: pouw-consensus:dev
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: "/usr/share/pouw-bucket"
name: pouw-bucket-pv-storage
env:
- name: REDIS_PORT
valueFrom:
configMapKeyRef:
name: settings-map
key: REDIS_PORT
- name: POUW_BUCKET
valueFrom:
configMapKeyRef:
name: settings-map
key: POUW_BUCKET
command: ["/bin/sh", "-c"]
args: ["while [ -z \"${REDIS_HOST}\" ]; do REDIS_HOST=$(sed '/supervisor/!d;q' /usr/share/pouw-data/nodes | sed 's/ .*//'); sleep 5; done && echo \"export REDIS_HOST=\"$REDIS_HOST\"\" >> ~/.bashrc && python3 /opt/main-iteration/pai/pouw/verification/server.py --redis-host $REDIS_HOST --redis-port $REDIS_PORT"]
imagePullPolicy: Never
- name: pouw-client-blockchain
image: pouw-blockchain:dev
command: ["/bin/sh", "-c"]
args: ["paicoind -mine-genesis-block && paicoind -add-nodes=/usr/share/pouw-data/nodes -own-ip=$MY_POD_IP"]
volumeMounts:
- mountPath: "/usr/share/pouw-data"
name: pouw-pv-storage
- mountPath: /root/data
name: paicoin-datadir
- mountPath: /root/.paicoin
name: paicoin-config
env:
- name: MY_POD_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
imagePullPolicy: Never