This commit is contained in:
HDW
2026-07-26 12:33:09 +02:00
parent 11336eaf4b
commit 93cf8574ac
6 changed files with 254 additions and 0 deletions

View File

@@ -44,6 +44,12 @@ spec:
- "k8s-solo-lottery"
- "--daemon-poll-interval=1000"
- "--randomx-mode=light"
- "--http-enabled"
- "--http-host=0.0.0.0"
- "--http-port=16000"
ports:
- containerPort: 16000
name: http-api
volumeMounts:
- name: shared
mountPath: /shared
@@ -57,3 +63,16 @@ spec:
volumes:
- name: shared
emptyDir: {}
---
apiVersion: v1
kind: Service
metadata:
name: xmrig-monero-solo-api
namespace: miner
spec:
selector:
app: xmrig-monero-solo
ports:
- name: http-api
port: 16000
targetPort: 16000