baseline/.renovaterc.json

34 lines
860 B
JSON
Raw Normal View History

2023-07-15 07:22:00 +00:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>infrastructure/renovate-config"
],
"customManagers": [
2023-07-15 07:22:00 +00:00
{
"customType": "regex",
2023-07-15 14:17:41 +00:00
"description": "ArgoCD",
"fileMatch": [
"k0s-config\\.yaml$"
],
2023-07-15 14:17:41 +00:00
"matchStrings": [
"\\s+version:\\s(?<currentValue>.*)\\s+#\\s+depName=(?<depName>.*)\\s+repoUrl=(?<registryUrl>.*)"
2023-07-15 14:17:41 +00:00
],
"datasourceTemplate": "helm"
},
{
"customType": "regex",
2023-07-15 14:17:41 +00:00
"description": "Baseline",
"fileMatch": [
"\\.jsonnet$"
],
2023-07-15 07:22:00 +00:00
"matchStrings": [
"\\s+chart::\\s\\\"(?<depName>.*)\\\",",
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\",",
"\\s+version::\\s\\\"(?<currentValue>.*)\\\","
2023-07-15 07:22:00 +00:00
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
}
]
}