-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
59 lines (59 loc) · 1.9 KB
/
renovate.json
File metadata and controls
59 lines (59 loc) · 1.9 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:best-practices", ":dependencyDashboard"],
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"groupName": "all digest updates",
"groupSlug": "all-digest",
"matchPackageNames": ["*"],
"matchUpdateTypes": ["digest"]
},
{
"matchPackageNames": ["/argo/"],
"groupName": "argocd"
}
],
"argocd": {
"managerFilePatterns": ["/apps/.+\\.ya?ml$/", "/awx/.+\\.yaml$/"]
},
"helm-values": {
"managerFilePatterns": ["/apps/.+\\.ya?ml$/"]
},
"kustomize": {
"managerFilePatterns": ["/(^|/)kustomization\\.ya?ml$/"],
"pinDigests": false
},
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/auto_upgrades/.+\\.yaml$/"],
"matchStrings": ["version: (?<currentValue>\\S+)"],
"depNameTemplate": "k3s",
"versioningTemplate": "semver-coerced",
"datasourceTemplate": "custom.k3s"
},
{
"customType": "regex",
"managerFilePatterns": ["/kustomization\\.ya?ml$/"],
"matchStrings": [
"cluster-operator/releases/download/v(?<currentValue>\\S+)/cluster-operator.yml"
],
"depNameTemplate": "rabbitmq-cluster-operator",
"datasourceTemplate": "github-releases",
"packageNameTemplate": "rabbitmq/cluster-operator"
}
],
"customDatasources": {
"k3s": {
"defaultRegistryUrlTemplate": "https://update.k3s.io/v1-release/channels",
"transformTemplates": [
"{\"releases\":[{\"version\": $$.(data[id = 'stable'].latest),\"sourceUrl\":\"https://github.com/k3s-io/k3s\",\"changelogUrl\":$join([\"https://github.com/k3s-io/k3s/releases/tag/\",data[id = 'stable'].latest])}],\"sourceUrl\": \"https://github.com/k3s-io/k3s\",\"homepage\": \"https://k3s.io/\"}"
]
}
}
}