From ffb8c030d917fcefc3c4dff761d7920e42add435 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Tue, 9 Jun 2026 09:07:59 -0400 Subject: [PATCH 1/3] chore: add renovate.json with helm-values image tracking --- renovate.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..22a8ce9 --- /dev/null +++ b/renovate.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended"], + "regexManagers": [ + { + "fileMatch": ["(^|/)values\\.ya?ml$"], + "matchStrings": [ + "repository:\\s*\"?(?[^\"\\s\\n]+?)\"?\\n\\s+tag:\\s*\"?(?[^\"\\s\\n]*)\"?" + ], + "datasourceTemplate": "docker" + } + ], + "packageRules": [ + { + "matchDatasources": ["helm"], + "matchPackageNames": ["common"], + "enabled": false + } + ] +} From d389f706096ae148b4281369b971e1a23f48ff41 Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 13:42:41 +0000 Subject: [PATCH 2/3] chore: remove redundant configs now handled globally --- renovate.json | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 22a8ce9..f92dae2 100644 --- a/renovate.json +++ b/renovate.json @@ -1,9 +1,10 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"], "regexManagers": [ { - "fileMatch": ["(^|/)values\\.ya?ml$"], + "fileMatch": [ + "(^|/)values\\.ya?ml$" + ], "matchStrings": [ "repository:\\s*\"?(?[^\"\\s\\n]+?)\"?\\n\\s+tag:\\s*\"?(?[^\"\\s\\n]*)\"?" ], @@ -12,8 +13,12 @@ ], "packageRules": [ { - "matchDatasources": ["helm"], - "matchPackageNames": ["common"], + "matchDatasources": [ + "helm" + ], + "matchPackageNames": [ + "common" + ], "enabled": false } ] From 9708da39e097c09f75d9c38d9428a707087b7026 Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 17:49:23 +0000 Subject: [PATCH 3/3] chore: fix common Helm repo hostname (scm.cabillot.eu), remove redundant packageRules --- charts/cv/Chart.yaml | 8 ++++---- renovate.json | 11 ----------- 2 files changed, 4 insertions(+), 15 deletions(-) diff --git a/charts/cv/Chart.yaml b/charts/cv/Chart.yaml index 7c29e3c..0ca9223 100644 --- a/charts/cv/Chart.yaml +++ b/charts/cv/Chart.yaml @@ -7,10 +7,10 @@ version: 0.0.11 kubeVersion: ">=1.16.0-0" keywords: - cv -home: https://scm.docker.cabillot.eu/web/cv-helm/ -icon: https://scm.docker.cabillot.eu/repo-avatars/89-d8eec884cb05430e8ccdc486841bb431 +home: https://scm.cabillot.eu/web/cv-helm/ +icon: https://scm.cabillot.eu/repo-avatars/89-d8eec884cb05430e8ccdc486841bb431 sources: -- https://scm.docker.cabillot.eu/web/cv +- https://scm.cabillot.eu/web/cv maintainers: - name: Julien Cabillot email: dockerimages@cabillot.eu @@ -24,5 +24,5 @@ appVersion: "latest" dependencies: - name: common - repository: "https://scm.docker.cabillot.eu/perso/helm-library-common/raw/branch/master/" + repository: "https://scm.cabillot.eu/perso/helm-library-common/raw/branch/master/" version: 4.2.0 diff --git a/renovate.json b/renovate.json index f92dae2..1cbf8e9 100644 --- a/renovate.json +++ b/renovate.json @@ -10,16 +10,5 @@ ], "datasourceTemplate": "docker" } - ], - "packageRules": [ - { - "matchDatasources": [ - "helm" - ], - "matchPackageNames": [ - "common" - ], - "enabled": false - } ] }