baseline/.renovaterc.json

91 lines
2.3 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": [
2023-07-17 08:46:36 +00:00
{
"customType": "regex",
2023-07-17 08:46:36 +00:00
"description": "k3s",
"fileMatch": [
"pb_install\\.yml"
],
"matchStrings": [
"\\s+INSTALL_K3S_CHANNEL:\\s(?<currentValue>.*)"
],
2023-07-17 08:46:36 +00:00
"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-init\\.yml$"
],
2023-07-15 14:17:41 +00:00
"matchStrings": [
"\\s+repo:\\s(?<registryUrl>.*)\\n\\s+chart:\\s(?<depName>.*)\\n\\s+version:\\s(?<currentValue>.*)\\n"
],
"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+version::\\s\\\"(?<currentValue>.*)\\\",",
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\","
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
},
{
"customType": "regex",
2023-07-15 14:17:41 +00:00
"description": "Baseline - Prometheus",
"fileMatch": [
"prometheus-stack\\.jsonnet"
],
2023-07-15 07:22:00 +00:00
"matchStrings": [
"\\s+chart::\\s\\\"(?<depName>.*)\\\",",
"\\s+\\\"version\\\":\\s\\\"(?<currentValue>.*)\\\",",
2023-07-15 07:22:00 +00:00
"\\s+repo::\\s\\\"(?<registryUrl>.*)\\\","
],
"matchStringsStrategy": "combination",
"datasourceTemplate": "helm"
}
],
"packageRules": [
{
"description": "Merged updates not applied by gitops",
"matchPackageNames": [
"k3s-io/k3s",
"argo-cd",
"argocd-apps"
],
"prBodyNotes": [
":warning: **Manual Intervention**: This update needs manual deployment. Please review and take appropriate action."
]
},
{
"description": "Separate minor and patch updates - Prometheus",
"matchPackageNames": [
"kube-prometheus-stack"
],
"separateMinorPatch": true
},
{
"description": "AutoMerge patch releases - Prometheus",
"matchPackageNames": [
"kube-prometheus-stack"
],
"matchUpdateTypes": [
"patch"
],
"automerge": true,
"ignoreTests": true
}
2023-07-15 07:22:00 +00:00
]
}