-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrenovate.json
70 lines (70 loc) · 1.89 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["pascaliske/renovate-config"],
"flux": {
"fileMatch": ["cluster/.+\\.ya?ml$"]
},
"helm-values": {
"fileMatch": ["cluster/.+\\.ya?ml$"]
},
"kubernetes": {
"fileMatch": ["cluster/.+\\.ya?ml$"]
},
"customManagers": [
{
"customType": "regex",
"description": "Process CRD dependencies",
"fileMatch": ["cluster/.+\\.ya?ml$"],
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}helm{{/if}}",
"matchStrings": [
"registryUrl=(?<registryUrl>\\S+) chart=(?<depName>\\S+)\n.*?(?<currentValue>[^-\\s]*)\n",
"datasource=(?<datasource>\\S+) image=(?<depName>\\S+)\n.*?-\\s(.*?)\\/(?<currentValue>[^/]+)\\/[^/]+\n"
]
},
{
"customType": "regex",
"description": "Process any imageName keys in YAML files (cloudnative-pg)",
"fileMatch": ["cluster/.+\\.ya?ml$"],
"datasourceTemplate": "docker",
"matchStrings": [
"imageName: (?<depName>[^\\s:]+):(?<currentValue>\\S+)(@(?<currentDigest>sha256:\\S+)?)?"
]
}
],
"packageRules": [
{
"matchManagers": ["kubernetes"],
"matchDatasources": ["kubernetes-api"],
"enabled": false
},
{
"matchPackageNames": ["/cloudnative-pg\/postgresql/"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"matchPackageNames": ["/flux/"],
"groupName": "flux"
},
{
"matchPackageNames": ["/traefik/"],
"groupName": "traefik"
},
{
"matchPackageNames": ["/cloudnative-pg/"],
"groupName": "cloudnative-pg"
},
{
"matchPackageNames": ["/trivy-operator/"],
"groupName": "trivy-operator"
},
{
"matchPackageNames": ["/vector/"],
"groupName": "vector"
},
{
"matchPackageNames": ["/descheduler/"],
"groupName": "descheduler"
}
]
}