22 lines
771 B
YAML
22 lines
771 B
YAML
# services/crypto/xmr-miner/configmap-sources.yaml
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: xmr-miner-sources
|
|
namespace: crypto
|
|
data:
|
|
# REQUIRED: set to the official p2pool ARM64 tarball URL
|
|
P2POOL_URL: "https://EXAMPLE/p2pool-linux-arm64.tar.gz"
|
|
# OPTIONAL: p2pool SHA256 (exact 64-hex chars). Leave blank to skip verification.
|
|
P2POOL_SHA256: ""
|
|
|
|
# REQUIRED: set to the official xmrig ARM64 tarball URL (static build preferred)
|
|
XMRIG_URL: "https://EXAMPLE/xmrig-linux-static-arm64.tar.gz"
|
|
# OPTIONAL: xmrig SHA256. Leave blank to skip verification.
|
|
XMRIG_SHA256: ""
|
|
|
|
# Threads for xmrig (default 1 to avoid RAM spikes; override after testing)
|
|
XMRIG_THREADS: "1"
|
|
# Extra args for xmrig if you want (space-separated)
|
|
XMRIG_EXTRA_ARGS: ""
|