-
Notifications
You must be signed in to change notification settings - Fork 227
/
deploy.yaml
75 lines (72 loc) · 2.29 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
---
version: "2.0"
services:
mongo:
image: mongo:latest
command:
- "docker-entrypoint.sh"
args:
- "--storageEngine=wiredTiger"
expose:
- port: 27017
as: 27017
to:
- service: mongo
web:
image: raviforbole/bigdipper:akash
depends-on:
- mongo
env:
- "ROOT_URL=http://localhost"
- "MONGO_URL=mongodb://mongo:27017/meteor"
- "PORT=3000"
- 'METEOR_SETTINGS={"public":{"chainName":"Akash Edgenet","chainId":"akash-edgenet-1","gtm":false,"slashingWindow":10000,"uptimeWindow":250,"initialPageSize":30,"secp256k1":false,"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub","bondDenom":"uakt","powerReduction":1000000,"coins":[{"denom":"uakt","displayName":"AKT","fraction":1000000}],"modules":{"supply":true,"minting":false,"gov":true},"gasPrice":0.02,"coingeckoId":false},"remote":{"rpc":"https://rpc.edgenet.akash.forbole.com:443","lcd":"https://api.edgenet.akash.forbole.com:443"},"debug":{"startTimer":true},"params":{"startHeight":0,"defaultBlockTime":5000,"validatorUpdateWindow":300,"blockInterval":15000,"consensusInterval":1000,"statusInterval":7500,"signingInfoInterval":1800000,"proposalInterval":5000,"missedBlocksInterval":60000,"delegationInterval":900000}}'
expose:
- port: 3000
as: 80
accept:
- "edgenet.decloud.bigdipper.live"
to:
- global: true
profiles:
compute:
web:
resources:
cpu:
units: 0.6
memory:
size: 512Mi
storage:
size: 1Gi
mongo:
resources:
cpu:
units: 0.4
memory:
size: 512Mi
storage:
size: 2Gi
placement:
akash:
attributes:
host: akash
signedBy:
anyOf:
- "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63"
- "akash18qa2a2ltfyvkyj0ggj3hkvuj6twzyumuaru9s4"
pricing:
web:
denom: uakt
amount: 10000
mongo:
denom: uakt
amount: 10000
deployment:
web:
akash:
profile: web
count: 1
mongo:
akash:
profile: mongo
count: 1