From 1d3e7df2facae1189f6a9198d6d16bfd47f15527 Mon Sep 17 00:00:00 2001 From: Timo Behrendt Date: Sun, 12 Oct 2025 17:55:46 +0200 Subject: [PATCH] fix: private helm registry (#7) Fixing the setup for the private helm registry. Instead of providing the "host" as the name of the field would suggest, one has to provide a full URL, which also becomes clear, when reading the [documentation](https://docs.renovatebot.com/getting-started/private-packages/). Reviewed-on: https://gitea.t000-n.de/t.behrendt/renovate-configs/pulls/7 Reviewed-by: branch-buddy Co-authored-by: Timo Behrendt Co-committed-by: Timo Behrendt --- helm.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm.json b/helm.json index dbad380..69d2938 100644 --- a/helm.json +++ b/helm.json @@ -16,7 +16,7 @@ }, "hostRules": [ { - "matchHost": "gitea.t000-n.de", + "matchHost": "https://gitea.t000-n.de/api/packages/t.behrendt/helm", "hostType": "helm", "username": "{{ secrets.HELM_REGISTRY_USER }}", "password": "{{ secrets.HELM_REGISTRY_PASSWORD }}"