-
Notifications
You must be signed in to change notification settings - Fork 164
/
renovate.json
62 lines (62 loc) · 2.45 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":gitSignOff",
":rebaseStalePrs"
],
"assignees": [
"nschad",
"kd7lxl"
],
"labels": ["dependencies"],
"regexManagers": [{
"description": "Update cortex in Chart.yaml",
"fileMatch": ["^Chart\\.yaml$"],
"matchStrings": [
"appVersion: (?<currentValue>.*?)\\n"
],
"depNameTemplate": "quay.io/cortexproject/cortex",
"datasourceTemplate": "docker"
},
{
"description": "Update cortex in README.md",
"fileMatch": ["^README\\.md$"],
"matchStrings": [
"\\bAppVersion:\\s+(?<currentValue>v\\d+\\.\\d+\\.\\d+(?:\\+\\d+)?)",
"\\bAppVersion-+(?<currentValue>v\\d+\\.\\d+\\.\\d+(?:\\+\\d+)?)"
],
"depNameTemplate": "quay.io/cortexproject/cortex",
"datasourceTemplate": "docker"
},
{
"description": "Update nginx image in README.md",
"fileMatch": ["^README\\.md$"],
"matchStrings": [
"\\|\\s+nginx.​image.​tag\\s+\\|\\s+float\\s+\\|\\s+\\`(?<currentValue>.*?)\\`\\s+\\|\\s+\\|\\s+"
],
"depNameTemplate": "nginx",
"datasourceTemplate": "docker"
},
{
"description": "Update kiwigrid/k8s-sidecar image in README.md",
"fileMatch": ["^README\\.md$"],
"matchStrings": [
"\\|\\s+ruler.​sidecar.​image.​tag\\s+\\|\\s+string\\s+\\|\\s+`\"(?<currentValue>.*?)\"`\\s+\\|\\s+\\|\\s+",
"\\|\\s+alertmanager.​sidecar.​image.​tag\\s+\\|\\s+string\\s+\\|\\s+`\"(?<currentValue>.*?)\"`\\s+\\|\\s+\\|\\s+"
],
"depNameTemplate": "kiwigrid/k8s-sidecar",
"datasourceTemplate": "docker"
},
{
"description": "Update memcached image in README.md",
"fileMatch": ["^README\\.md$"],
"matchStrings": [
"\\|[^|]*\\|[^|]*\\(memcached\\)[^|]*\\|\\s+(?<currentValue>.*?)\\s+\\|\\s+"
],
"depNameTemplate": "memcached",
"registryUrlTemplate": "https://charts.bitnami.com/bitnami",
"datasourceTemplate": "helm"
}
]
}