From 0dc22e90ae4dce8aa5cc2c8b055d831cc79ad18c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomislav=20Kopi=C4=87?= Date: Sat, 13 Sep 2025 12:31:52 +0000 Subject: [PATCH] Add Readme.md --- Readme.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 Readme.md diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..75681d5 --- /dev/null +++ b/Readme.md @@ -0,0 +1,41 @@ +## Helm Chart + +Add the chart repo to Helm: + +```bash +helm repo add duco https://git.kopic.hr/api/packages/tomislav/helm/api/charts +helm repo update +``` + +Install the chart using the default `values.yaml`: + +```bash +helm install duco-miner duco/duino-miner +``` + +### Inspect configurable values + +You can view all configurable options in the chart with: + +```bash +helm show values duco/duino-miner +``` + +### Override username and mining key + +Create a custom `values.yaml`: + +```yaml +env: + DUCO_USERNAME: "your_actual_username" + DUCO_MINING_KEY: "your_actual_mining_key" +``` + +Install the chart with your custom values: + +```bash +helm install duco-miner duco/duino-miner -f my-values.yaml +``` + +You can also override other environment variables in `values.yaml` as needed, such as `DUCO_THREADS`, `DUCO_INTENSITY`, or `DUCO_START_DIFF`. +