feat: add renovate configuration

This commit is contained in:
Renovate Bot 2023-07-15 09:22:00 +02:00 committed by Sebastian Mark
parent 7a2f25cb64
commit 014b338eae

33
renovate.json Normal file
View file

@ -0,0 +1,33 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":semanticCommitScopeDisabled"
],
"regexManagers": [
{
"description": "Baseline upgrades",
"fileMatch": ["\\.jsonnet$"],
"matchStrings": [
"\\s+chart::\\s\\\"(?<depName>.*)\\\",",
"\\s+version::\\s\\\"(?<currentValue>.*)\\\",",
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\","
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
},
{
"description": "Edge case prometheus",
"fileMatch": ["prometheus-stack\\.jsonnet"],
"matchStrings": [
"\\s+chart::\\s\\\"(?<depName>.*)\\\",",
"\\s+\\\"version\\\"\:\\s\\\"(?<currentValue>.*)\\\",",
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\","
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
}
]
}