From 2df0f6b2c3fb518fc3c70d26f5fadf234d0a0280 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sun, 12 Oct 2025 17:21:57 +0200 Subject: [PATCH] feat: add private helm repo support (#6) Adding support for our private helm repository enabling updates of private resources. Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/6 Reviewed-by: branch-buddy Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- helm.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/helm.json b/helm.json index 0e09f7f..dbad380 100644 --- a/helm.json +++ b/helm.json @@ -13,5 +13,13 @@ "helmfile": { "enabled": true, "addLabels": ["deps", "helm"] - } + }, + "hostRules": [ + { + "matchHost": "gitea.t000-n.de", + "hostType": "helm", + "username": "{{ secrets.HELM_REGISTRY_USER }}", + "password": "{{ secrets.HELM_REGISTRY_PASSWORD }}" + } + ] }