baseline/.renovaterc.json

49 lines
1.2 KiB
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": [
{
"customType": "regex",
"description": "k3s",
"fileMatch": [
"playbook\\.yml"
],
"matchStrings": [
"\\s+k3s_version:\\s(?<currentValue>.*)"
],
"depNameTemplate": "k3s-io/k3s",
"datasourceTemplate": "github-releases"
},
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"
}
]
}