baseline/.renovaterc.json

37 lines
941 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": [
"^argocd-bootstrap/.*\\.yml$"
],
2023-07-15 14:17:41 +00:00
"matchStrings": [
"\\s+chart:\\s(?<depName>.*)",
"\\s+repo:\\s(?<registryUrl>.*)",
"\\s+version:\\s(?<currentValue>.*)"
2023-07-15 14:17:41 +00:00
],
"matchStringsStrategy": "combination",
2023-07-15 14:17:41 +00:00
"datasourceTemplate": "helm"
},
{
"customType": "regex",
"description": "Baseline Manifests",
"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"
}
]
}