forked from akash-network/awesome-akash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.yaml
132 lines (131 loc) · 2.9 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
---
version: "2.0"
services:
kawpow-pool:
image: cryptoandcoffee/akash-kawpow-pool:9
expose:
- port: 17117
to:
- service: neoxa
#Pool API
- port: 8788
to:
- global: true
#P2P Port
- port: 8080
as: 80
to:
- global: true
#Web UI Port
- port: 10001
as: 10001
to:
- global: true
#Difficulty: 0.001
- port: 10002
as: 10002
to:
- global: true
#Difficulty: 0.01
- port: 10003
as: 10003
to:
- global: true
#Difficulty: 0.1
- port: 10004
as: 10004
to:
- global: true
#Difficulty: 0.5
- port: 10005
as: 10005
to:
- global: true
#Difficulty: 1
- port: 10006
as: 10006
to:
- global: true
#Difficulty: 2
- port: 10007
as: 10007
to:
- global: true
#Difficulty: 4
- port: 10008
as: 10008
to:
- global: true
#Difficulty: 0.5
env:
- RAVEN_ENABLE=false
- NEOXA_ENABLE=true
- MEOWCOIN_ENABLE=false
- WALLET=
- FEE_WALLET=
- FEE_AMOUNT=0.1
- DAEMON_HOST=neoxa
- DAEMON_PORT=9766
- DAEMON_USER=user1
- DAEMON_PASS=pass1
neoxa:
image: cryptoandcoffee/akash-neoxa:8
expose:
- port: 9766
to:
- service: kawpow-pool
env:
- PRIVATE_KEY=
profiles:
compute:
kawpow-pool:
resources:
cpu:
units: 2
#Min 0.01 / Max 256 cpu.units
memory:
size: 4Gi
#Min 8Gi for kawpow-pool / Max 512Gi
storage:
size: 32Gi
#Current blockchain size is > 144Gi
#Max 32Ti
neoxa:
resources:
cpu:
units: 2
#Min 0.01 / Max 256 cpu.units
memory:
size: 4Gi
#Min 8Gi for kawpow-pool / Max 512Gi
storage:
size: 16Gi
#Current blockchain size is > 144Gi
#Max 32Ti
placement:
akash:
#######################################################
#Keep this section to deploy on trusted providers
signedBy:
anyOf:
- "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63"
#######################################################
#Remove this section to deploy on untrusted providers
#Beware* You may have deployment, security, or other issues on untrusted providers
#https://akash.network/docs/providers/audited-attributes
pricing:
kawpow-pool:
denom: uakt
amount: 10000 #Keep high to show all bids
neoxa:
denom: uakt
amount: 10000 #Keep high to show all bids
deployment:
kawpow-pool:
akash:
profile: kawpow-pool
count: 1
neoxa:
akash:
profile: neoxa
count: 1