forked from PraetorOne/awesome-akash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy.yaml
44 lines (42 loc) · 766 Bytes
/
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
version: "2.0"
services:
tts:
image: nomorelies/tts:v1.0
expose:
- port: 5002
as: 80
to:
- global: true
command:
- bash
- "-c"
args:
- "python3 TTS/server/server.py --model_name tts_models/en/vctk/vits --use_cuda true"
# use gpu with --use cuda true
# use cpu with --use cuda false
profiles:
compute:
tts:
resources:
cpu:
units: 4
memory:
size: 8Gi
storage:
- size: 16Gi
gpu:
units: 1
attributes:
vendor:
nvidia:
placement:
akash:
pricing:
tts:
denom: uakt
amount: 100000
deployment:
tts:
akash:
profile: tts
count: 1