This repository has been archived by the owner on Dec 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
workloads.yaml
223 lines (219 loc) · 4.13 KB
/
workloads.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: algorithm-api
spec:
replicas: 3
selector:
matchLabels:
app: algorithm-api
template:
metadata:
labels:
app: algorithm-api
spec:
containers:
- name: algorithm-api
image: frlnbrg/project_hopper_algorithm_api
ports:
- containerPort: 3000
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: dataset-api
spec:
replicas: 3
selector:
matchLabels:
app: dataset-api
template:
metadata:
labels:
app: dataset-api
spec:
containers:
- name: dataset-api
image: frlnbrg/project_hopper_dataset_api
ports:
- containerPort: 3000
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: algorithm-aggregate
spec:
replicas: 3
selector:
matchLabels:
app: algorithm-aggregate
template:
metadata:
labels:
app: algorithm-aggregate
spec:
containers:
- name: algorithm-aggregate
image: frlnbrg/project_hopper_algorithm_aggregate
ports:
- containerPort: 50051
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: dataset-aggregate
spec:
replicas: 3
selector:
matchLabels:
app: dataset-aggregate
template:
metadata:
labels:
app: dataset-aggregate
spec:
containers:
- name: dataset-aggregate
image: frlnbrg/project_hopper_dataset_aggregate
ports:
- containerPort: 50051
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: eventstore
spec:
replicas: 3
selector:
matchLabels:
app: eventstore
template:
metadata:
labels:
app: eventstore
spec:
containers:
- name: eventstore
image: frlnbrg/project_hopper_event_store
ports:
- containerPort: 50051
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: nats
spec:
selector:
matchLabels:
app: nats
template:
metadata:
labels:
app: nats
spec:
containers:
- name: nats
image: nats-streaming
ports:
- containerPort: 4222
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: algorithm-querystore
spec:
selector:
matchLabels:
app: algorithm-querystore
template:
metadata:
labels:
app: algorithm-querystore
spec:
containers:
- name: algorithm-querystore
image: frlnbrg/algorithm_query_store
ports:
- containerPort: 50051
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: dataset-querystore
spec:
selector:
matchLabels:
app: dataset-querystore
template:
metadata:
labels:
app: dataset-querystore
spec:
containers:
- name: dataset-querystore
image: frlnbrg/dataset_query_store
ports:
- containerPort: 50051
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: algorithm-sync-worker
spec:
selector:
matchLabels:
app: algorithm-sync-worker
template:
metadata:
labels:
app: algorithm-sync-worker
spec:
containers:
- name: algorithm-sync-worker
image: frlnbrg/algorithm_sync_worker
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: dataset-sync-worker
spec:
selector:
matchLabels:
app: dataset-sync-worker
template:
metadata:
labels:
app: dataset-sync-worker
spec:
containers:
- name: dataset-sync-worker
image: frlnbrg/dataset_sync_worker
imagePullPolicy: Always
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: webapp
spec:
selector:
matchLabels:
app: webapp
template:
metadata:
labels:
app: webapp
spec:
containers:
- name: webapp
image: frlnbrg/project_hopper_frontend
ports:
- containerPort: 80