This repository has been archived by the owner on Feb 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
renovate.json
78 lines (78 loc) · 1.99 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
{
"enabled": "true",
"extends": [":assignee(chipwolf)", "config:base"],
"includeForks": "true",
"kubernetes": {"fileMatch": ["\\.yaml$"]},
"masterIssue": "true",
"masterIssueAutoclose": "true",
"packageRules": [
{
"automerge": "true",
"updateTypes": ["digest", "minor", "patch", "pin"]
},
{
"datasources": ["helm"],
"managers": ["regex"],
"packageNames": [
"elasticsearch",
"filebeat",
"kibana",
"logstash",
"metricbeat"
],
"registryUrls": ["https://helm.elastic.co"]
},
{
"datasources": ["helm"],
"managers": ["regex"],
"packageNames": [
"external-dns"
],
"registryUrls": ["https://charts.bitnami.com/bitnami"]
},
{
"datasources": ["helm"],
"managers": ["regex"],
"packageNames": ["ingress-nginx"],
"registryUrls": ["https://kubernetes.github.io/ingress-nginx/"]
},
{
"datasources": ["helm"],
"managers": ["regex"],
"packageNames": ["pomerium"],
"registryUrls": ["https://helm.pomerium.io"]
}
],
"pinDigests": "true",
"regexManagers": [
{
"datasourceTemplate": "docker",
"fileMatch": ["^cloudbuild.yaml$"],
"matchStrings": [
"name: (?<depName>.*):(?<currentValue>.*)\n"
],
"versioningTemplate": "docker"
},
{
"datasourceTemplate": "github-tags",
"fileMatch": ["(^|/)kustomization.yaml"],
"matchStrings": [
"- github.com/(?<depName>.*?/.*?)(?:/|\\?).*?ref=(?<currentValue>.*?)\\s"
]
},
{
"datasourceTemplate": "github-tags",
"fileMatch": ["\\.yaml$"],
"matchStrings": [
"chart:\n *git: [email protected]:(?<depName>.*?).git\n *ref: (?<currentValue>.*?)\n"
]
},
{
"datasourceTemplate": "helm",
"fileMatch": ["\\.yaml$"],
"matchStrings": [
"chart:\n *repository: (?<repository>.*?)\n *name: (?<depName>.*?)\n *version: (?<currentValue>.*)\n"
]
}
]
}