Create helm chart

This commit is contained in:
2025-09-13 11:59:25 +02:00
commit 1af3889d4e
8 changed files with 304 additions and 0 deletions

17
templates/NOTES.txt Normal file
View File

@@ -0,0 +1,17 @@
Your Duino-Coin miner DaemonSet has been successfully deployed!
Since the miner does not expose any HTTP service, there is no application URL.
To check that it is running on all nodes, use:
kubectl get daemonset -n {{ .Release.Namespace }} {{ include "duino-miner.fullname" . }}
To view logs from one of the miner pods:
kubectl logs -n {{ .Release.Namespace }} -l app.kubernetes.io/name={{ include "duino-miner.name" . }} --tail=50 -f
To see which nodes are running the miner:
kubectl get pods -n {{ .Release.Namespace }} -o wide -l app.kubernetes.io/name={{ include "duino-miner.name" . }}
Happy mining!