forked from akash-network/awesome-akash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.yaml
288 lines (276 loc) · 6.01 KB
/
deploy.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
---
version: "2.0"
services:
postgres:
image: postgres:9.6-alpine
volumes:
- /opt/redash/postgres-data:/var/lib/postgresql/data
restart: always
expose:
- port: 5432
as: 5432
to:
- global: false
- service: redash
- service: scheduled-worker
env:
- POSTGRES_HOST_AUTH_METHOD=trust
params:
storage:
postgres-db:
mount: /var/lib/postgres
readOnly: false
scheduler:
image: redash/redash:10.0.0.b50363
expose: []
command:
- /app/bin/docker-entrypoint
args:
- scheduler
env:
- PYTHONUNBUFFERED=0
- REDASH_LOG_LEVEL=INFO
- REDASH_REDIS_URL=redis://redis:6379/0
- POSTGRES_PASSWORD=password123
- REDASH_COOKIE_SECRET=redash-selfhosted
- REDASH_SECRET_KEY=redash-selfhosted
- REDASH_DATABASE_URL=postgresql://postgres:password123@postgres/postgres
worker:
image: redash/redash:10.0.0.b50363
expose: []
command:
- /app/bin/docker-entrypoint
args:
- worker
env:
- PYTHONUNBUFFERED=0
- REDASH_LOG_LEVEL=INFO
- REDASH_REDIS_URL=redis://redis:6379/0
- POSTGRES_PASSWORD=password123
- REDASH_COOKIE_SECRET=redash-selfhosted
- REDASH_SECRET_KEY=redash-selfhosted
- REDASH_DATABASE_URL=postgresql://postgres:password123@postgres/postgres
- QUEUES="periodic emails default"
# build db and server manually
# in redash shell...
# bin/docker-entrypoint create_db
# bin/docker-entrypoint server
redash:
image: redash/redash:10.0.0.b50363
depends_on:
- postgres
- redis
expose:
- port: 5000
to:
- service: nginx
- port: 5678
as: 5678
to:
- global: false
- service: scheduler
- service: scheduled-worker
command:
- "bash"
- "-c"
args:
- 'while true; do sleep 30; done;'
env:
- PYTHONUNBUFFERED=0
- REDASH_LOG_LEVEL=INFO
- REDASH_REDIS_URL=redis://redis:6379/0
- POSTGRES_PASSWORD=password123
- REDASH_COOKIE_SECRET=redash-selfhosted
- REDASH_SECRET_KEY=redash-selfhosted
- REDASH_DATABASE_URL=postgresql://postgres:password123@postgres/postgres
scheduled-worker:
image: redash/redash:10.0.0.b50363
expose: []
command:
- /app/bin/docker-entrypoint
args:
- worker
env:
- PYTHONUNBUFFERED=0
- REDASH_LOG_LEVEL=INFO
- REDASH_REDIS_URL=redis://redis:6379/0
- POSTGRES_PASSWORD=password123
- REDASH_COOKIE_SECRET=redash-selfhosted
- REDASH_SECRET_KEY=redash-selfhosted
- REDASH_DATABASE_URL=postgresql://postgres:password123@postgres/postgres
- QUEUES=scheduled_queries,schemas
redash-adhoc:
image: redash/redash:10.0.0.b50363
expose: []
command:
- /app/bin/docker-entrypoint
args:
- worker
env:
- PYTHONUNBUFFERED=0
- REDASH_LOG_LEVEL=INFO
- REDASH_REDIS_URL=redis://redis:6379/0
- POSTGRES_PASSWORD=password123
- REDASH_COOKIE_SECRET=redash-selfhosted
- REDASH_SECRET_KEY=redash-selfhosted
- REDASH_DATABASE_URL=postgresql://postgres:password123@postgres/postgres
- QUEUES=queries
redis:
image: redis:5.0-alpine
expose:
- port: 6379
as: 6379
to:
- global: false
- service: redash
- service: scheduled-worker
restart: always
nginx:
image: redash/nginx:latest
depends_on:
- redash
links:
- redash:redash
restart: always
expose:
- port: 80
as: 80
accept:
- "akashdash.xyz"
to:
- global: true
ip: "redashten"
endpoints:
redashten:
kind: ip
profiles:
compute:
postgres:
resources:
cpu:
units: 4
memory:
size: 4Gi
storage:
- size: 5Gi
- name: postgres-db
size: 5Gi
attributes:
persistent: true
class: beta1
scheduler:
resources:
cpu:
units: 4
memory:
size: 4Gi
storage:
- size: 1Gi
worker:
resources:
cpu:
units: 4
memory:
size: 4Gi
storage:
- size: 1Gi
redash:
resources:
cpu:
units: 4
memory:
size: 4Gi
storage:
- size: 5Gi
scheduled-worker:
resources:
cpu:
units: 4
memory:
size: 4Gi
storage:
- size: 1Gi
redash-adhoc:
resources:
cpu:
units: 4
memory:
size: 4Gi
storage:
- size: 1Gi
redis:
resources:
cpu:
units: 2
memory:
size: 2Gi
storage:
- size: 2Gi
nginx:
resources:
cpu:
units: 2
memory:
size: 2Gi
storage:
- size: 2Gi
placement:
akash:
pricing:
postgres:
denom: uakt
amount: 1000
scheduler:
denom: uakt
amount: 1000
worker:
denom: uakt
amount: 1000
redash:
denom: uakt
amount: 1000
scheduled-worker:
denom: uakt
amount: 1000
redash-adhoc:
denom: uakt
amount: 1000
redis:
denom: uakt
amount: 1000
nginx:
denom: uakt
amount: 1000
deployment:
postgres:
akash:
profile: postgres
count: 1
scheduler:
akash:
profile: scheduler
count: 1
worker:
akash:
profile: worker
count: 1
redash:
akash:
profile: redash
count: 1
scheduled-worker:
akash:
profile: scheduled-worker
count: 1
redash-adhoc:
akash:
profile: redash-adhoc
count: 1
redis:
akash:
profile: redis
count: 1
nginx:
akash:
profile: nginx
count: 1