From 083f8c95ff996e33e302afc2a7f503c55c06b6bd Mon Sep 17 00:00:00 2001 From: Sagent Date: Tue, 9 Jun 2026 02:15:32 +0000 Subject: [PATCH] chore(renovate): add config to detect all docker image references in values.yaml --- 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..99fa87c --- /dev/null +++ b/renovate.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "local>perso/renovate-config" + ], + "helmValues": { + "fileMatch": ["(^|/)values\\.ya?ml$"] + }, + "customManagers": [ + { + "customType": "regex", + "fileMatch": ["(^|/)values\\.ya?ml$"], + "matchStrings": [ + "repository:\\s*(?[^\\s]+)\\s*\\n\\s*tag:\\s*(?[^\\s]+)" + ], + "datasourceTemplate": "docker", + "versioningTemplate": "docker" + } + ] +}