-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdeploy.yml
70 lines (67 loc) · 1.36 KB
/
deploy.yml
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
---
version: "2.0"
services:
api:
image: ghcr.io/tombeynon/faucet:v0.0.1-rc1
env:
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=faucet
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=password
- NETWORK_RPC_NODE=https://rpc.akash.beyno.de:443
- FAUCET_WAIT_PERIOD=1d
- FAUCET_DISTRIBUTION_AMOUNT=10000
- FAUCET_DENOM=uakt
- FAUCET_FEES=5000
- FAUCET_GAS=180000
- FAUCET_MEMO=Sent from Faucet
- AUTH0_DOMAIN=mydomain.us.auth0.com
- AUTH0_AUDIENCE=https://mydomain.com
- FAUCET_MNEMONIC=some secret words here
expose:
- port: 3000
as: 80
to:
- global: true
profiles:
compute:
api:
resources:
cpu:
units: 1
memory:
size: 0.5Gi
storage:
size: 0.5Gi
app:
resources:
cpu:
units: 1
memory:
size: 0.5Gi
storage:
size: 0.5Gi
placement:
dcloud:
attributes:
host: akash
signedBy:
anyOf:
- akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63
pricing:
api:
denom: uakt
amount: 100
app:
denom: uakt
amount: 100
deployment:
api:
dcloud:
profile: api
count: 1
app:
dcloud:
profile: app
count: 1