-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
renovate.json
49 lines (49 loc) · 1.76 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"argocd": {
"fileMatch": ["\\.yaml$"]
},
"packageRules": [
{
"description": "Update Prometheus Stack CRDs at the same time as the ArgoCD Application - automerges for patch and minor version.",
"matchManagers": ["argocd", "kubernetes", "helmv3", "helm-values"],
"matchPackageNames": ["kube-prometheus-stack"],
"matchUpdateTypes": ["patch", "minor"],
"postUpgradeTasks": {
"commands": [
"bash scripts/autoupdate-prometheus-crds.sh '{{{newVersion}}}'"
],
"fileFilters": [
"prometheus/app_of_apps_with_matrix/prometheus_argocd_appset.yaml",
"prometheus/app_of_apps/prometheus_argocd_appset.yaml",
"prometheus/crds/prometheus_crds_argocd_app.yaml"
],
"executionMode": "branch"
},
"automerge": true,
"ignoreTests": true
},
{
"description": "Update Prometheus Stack CRDs at the same time as the ArgoCD Application - for major versions. Does NOT automerge.",
"matchManagers": ["argocd", "kubernetes", "helmv3", "helm-values"],
"matchPackageNames": ["kube-prometheus-stack"],
"matchUpdateTypes": ["major"],
"postUpgradeTasks": {
"commands": [
"bash scripts/autoupdate-prometheus-crds.sh '{{{newVersion}}}'"
],
"fileFilters": [
"prometheus/app_of_apps_with_matrix/prometheus_argocd_appset.yaml",
"prometheus/app_of_apps/prometheus_argocd_appset.yaml",
"prometheus/crds/prometheus_crds_argocd_app.yaml"
],
"executionMode": "branch"
}
},
{
"matchManagers": ["argocd", "helmv3", "helm-values", "kubernetes", "github-actions"],
"matchUpdateTypes": ["patch", "minor"],
"automerge": true,
"ignoreTests": true
}
]
}