updated renovate to update apps as well as have a 2 day release age

This commit is contained in:
Morten Olsen
2025-12-04 23:26:22 +01:00
parent 371b703fa2
commit c8cf31a151

View File

@@ -1,6 +1,7 @@
{ {
$schema: "https://docs.renovatebot.com/renovate-schema.json", $schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: ["config:recommended"], extends: ["config:recommended"],
minimumReleaseAge: "2 days",
packageRules: [ packageRules: [
{ {
groupName: "Docker images", groupName: "Docker images",
@@ -9,19 +10,17 @@
pinDigests: true, pinDigests: true,
}, },
], ],
"helm-values": {
managerFilePatterns: ["/^charts/.*/values\\.yaml$/"],
},
customManagers: [ customManagers: [
{ {
customType: "regex", customType: "regex",
managerFilePatterns: ["/^charts/.*/values\\.yaml$/"], fileMatch: [".*/templates/.*\\.yaml$", ".*/templates/.*\\.yml$"],
matchStrings: [ matchStrings: [
"repository:s*'(?<depName>.*?)'\ns*tag:s*'(?<currentValue>.*?)'", "repoURL:s*(?<registryUrls>https?://[^\\n\\r]+)[\\s\\S]*?targetRevision:s*(?<currentValue>[^\\n\\r\\s]+)[\\s\\S]*?chart:s*(?<depName>[^\\n\\r\\s]+)",
'repository:s*"(?<depName>.*?)"\ns*tag:s*"(?<currentValue>.*?)"', "repoURL:s*'(?<registryUrls>https?://[^']+)'[\\s\\S]*?targetRevision:s*'(?<currentValue>[^']+)'[\\s\\S]*?chart:s*'(?<depName>[^']+)'",
"repository:s*(?<depName>.*?)\ns*tag:s*(?<currentValue>.*)", 'repoURL:s*"(?<registryUrls>https?://[^"]+)"[\\s\\S]*?targetRevision:s*"(?<currentValue>[^"]+)"[\\s\\S]*?chart:s*"(?<depName>[^"]+)"',
], ],
datasourceTemplate: "docker", datasourceTemplate: "helm",
versioningTemplate: "semver",
}, },
], ],
} }