forked from akash-network/awesome-akash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.yaml
76 lines (74 loc) · 2.86 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
---
version: "2.0"
services:
miner-xmrig:
image: cryptoandcoffee/akash-xmrig:40
expose:
- port: 8080
as: 80
proto: tcp
to:
- global: true
env:
- ALGO=rx/0
#Set the algorithm you want xmrig to use.
- POOL=gulf.moneroocean.stream:20032
#The mining pool you want to connect to.
- WALLET=
#Your Monero Wallet Address for the default pool, otherwise any other wallet address for another pool/coin.
- WORKER=akash
#All worker names have the provider domain as suffix, example akash-provider.akash.world
- PASS=x
#Most pools do not require a password. Only change this if you need to set a password.
- TLS=true
#Protect your shares by choosing pools that support encryption!
- TLS_FINGERPRINT=
#Use a TLS_FINGERPRINT if required. Can be left blank.
- RANDOMX_MODE=fast
#Light or Fast - Min 0.1Gi required for MODE=light and Min 4.75Gi required for MODE=fast
- CUSTOM_OPTIONS=
#Customize the command line options of xmrig. Full list of command available here:
#https://xmrig.com/docs/miner/command-line-options
- AKASH_PROVIDER_STARTUP_CHECK=true
# Enable startup checks to validate CPU, memory, and configuration for optimal mining.
profiles:
compute:
miner-xmrig:
resources:
cpu:
units: 4
#Min 0.01 / Max 256 cpu.units
memory:
size: 4.75Gi
#Min 0.1Gi and MODE=light (Cheapest/slowest/economical)
#Min 3Gi and MODE=fast with single NUMA nodes (Only works on single NUMA node/limited compatibility)
#Min 4.75Gi MODE=fast with > 2 NUMA nodes (Best compatibility/fastest)
#Max 512Gi
#For best performance use at least 256Mi per cpu.unit requested above the 0.1Gi minimum required.
storage:
size: 6Mi
#Min 6Mi / Max 32Ti
placement:
akash:
#######################################################
#Keep this section to deploy on trusted providers
signedBy:
anyOf:
- "akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63"
#######################################################
#Remove this section to deploy on untrusted providers
#Miners: You can receive more bids from more providers by removing this section
#Beware* You may have deployment, security, or other issues on untrusted providers
#https://akash.network/docs/providers/audited-attributes
pricing:
miner-xmrig:
denom: uakt
amount: 10000 #Keep high to show all bids
deployment:
miner-xmrig:
akash:
profile: miner-xmrig
count: 1
##Total deployment size cannot exceed 512vCPU / 512Gi / 32Ti
##You can reduce vCPU and increase count:1 to see more bids
##Example: cpu.units:2 and akash.count:10 will show more bids than 10 cpu.units and akash.count 2.