-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrenovate.json
162 lines (162 loc) · 3.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"assignees": [
"procinger"
],
"prHourlyLimit": 5,
"prConcurrentLimit": 10,
"enabledManagers": [
"kubernetes",
"argocd",
"gomod",
"custom.regex",
"kustomize",
"github-actions"
],
"postUpdateOptions": [
"gomodTidy"
],
"kubernetes": {
"fileMatch": [
"^kubernetes-services/.*\\.yaml$",
"(^|/)kustomization\\.ya?ml$"
]
},
"argocd": {
"fileMatch": [
"^kubernetes-services/templates/.*\\.yaml$"
]
},
"packageRules": [
{
"matchManagers": [
"argocd"
],
"enabled": true,
"automerge": true,
"labels": [
"argocd",
"helm chart"
]
},
{
"matchManagers": [
"gomod"
],
"enabled": true,
"automerge": true,
"labels": [
"golang"
]
},
{
"matchManagers": [
"kustomize"
],
"enabled": true,
"automerge": true,
"labels": [
"kustomize"
]
},
{
"matchManagers": [
"custom.regex"
],
"enabled": true,
"automerge": true,
"labels": [
"custom regex"
]
},
{
"matchManagers": [
"github-actions"
],
"enabled": true,
"automerge": true,
"labels": [
"github actions"
]
},
{
"description": "respect weird docker versioning",
"versioning": "docker",
"matchDatasources": [
"docker"
],
"labels": [
"container image"
]
},
{
"description": "grouping of istio helm charts",
"groupName": "istio helm charts",
"matchPackageNames": [
"istiod",
"gateway",
"base"
],
"labels": [
"argocd",
"helm chart",
"istio"
]
},
{
"description": "grouping of monitoring helm charts",
"groupName": "monitoring helm charts",
"matchPackageNames": [
"kube-prometheus-stack",
"loki-stack"
],
"labels": [
"argocd",
"helm chart",
"monitoring"
]
},
{
"description": "grouping of k8s packages",
"groupName": "go k8s apis",
"matchDatasources": "go",
"matchPackageNames": [
"k8s.io/**",
"sigs.k8s.io/**"
],
"labels": [
"golang",
"k8s api",
"e2e framework"
]
},
{
"description": "Grouping of Alpine and Cloudflare OCI artifacts",
"groupName": "cloudflare",
"matchDatasources": ["docker"],
"matchPackageNames": [
"alpine",
"cloudflare/cloudflared"
],
"labels": ["oci artifacts"]
}
],
"customManagers": [
{
"customType": "regex",
"description": "K3S System Upgrade Controller CRD",
"fileMatch": [
"kubernetes-services/additions/k3s-upgrade-controller/kustomization.yaml$"
],
"matchStrings": [
"datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)\n.*?-\\s(.*?)\/(?<currentValue>[^/]+)\/[^/]+\n"
],
"depNameTemplate": "{{{depName}}}",
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
]
}