-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
52 lines (52 loc) · 1.58 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"timezone": "Europe/Paris",
"dependencyDashboard": true,
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"regexManagers": [
{
"fileMatch": ["^rendered-manifests/[^\\/]+/[^\\/]+/[^\\/]+/base/.*helm.*\\.yaml$"],
"matchStringsStrategy": "combination",
"matchStrings": [
"(^|\\n)name:\\s+(?:&\\S+\\s+)?(?<depName>\\S+)",
"(^|\\n)version:\\s+(?<currentValue>\\S+)",
"(^|\\n)repo:\\s+(?<registryUrl>\\S+)"
],
"datasourceTemplate": "helm"
},
{
"fileMatch": ["^rendered-manifests/[^\\/]+/[^\\/]+/[^\\/]+/base/.*chart.*renderer.*\\.yaml$"],
"matchStringsStrategy": "combination",
"matchStrings": [
"(^|\\n)repository:\\s+(?<registryUrl>\\S+)",
"(^|\\n)chart:\\s+(?:&\\S+\\s+)?(?<depName>\\S+)",
"(^|\\n)version:\\s+(?<currentValue>\\S+)"
],
"datasourceTemplate": "helm"
},
{
"fileMatch": ["^rendered-manifests/[^\\/]+/crds/[^\\/]+/base/kustomization\\.yaml$"],
"matchStrings": [
"raw\\.githubusercontent\\.com\\/(?<depName>[^\\/]+\\/[^\\/]+)\\/(?<currentValue>[^\\/]+)"
],
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:(.*[^\\d])?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)?"
}
],
"kubernetes": {
"fileMatch": [
"^rendered-manifests/[^\\/]+/[^\\/]+/[^\\/]+/.*\\.yaml$"
]
},
"ignoreDeps": [],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
]
}