-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
33 lines (33 loc) · 1.36 KB
/
renovate.json
File metadata and controls
33 lines (33 loc) · 1.36 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>terraform-ibm-modules/common-dev-assets:commonRenovateConfig"],
"customManagers": [
{
"customType": "regex",
"description": "Update docker image digest to latest in variables.tf",
"fileMatch": ["variables.tf$"],
"datasourceTemplate": "docker",
"matchStrings": [
"default\\s*=\\s*\"(?<currentValue>[\\w.-]+)@(?<currentDigest>sha256:[a-f0-9]+)\"\\s*# datasource: (?<depName>[^\\s]+)"
]
},
{
"customType": "regex",
"description": "Update reloader helm chart version to latest in variables.tf",
"fileMatch": ["variables.tf$"],
"matchStrings": ["default\\s*=\\s*\"(?<currentValue>.*?)\"\\s*# registryUrl: stakater.github.io/stakater-charts\\n"],
"depNameTemplate": "reloader",
"datasourceTemplate": "helm",
"registryUrlTemplate": "https://stakater.github.io/stakater-charts"
},
{
"customType": "regex",
"description": "Update ESO helm chart version to latest in variables.tf",
"fileMatch": ["variables.tf$"],
"matchStrings": ["default\\s*=\\s*\"(?<currentValue>.*?)\"\\s*# registryUrl: charts.external-secrets.io\\n"],
"depNameTemplate": "external-secrets",
"datasourceTemplate": "helm",
"registryUrlTemplate": "https://charts.external-secrets.io"
}
]
}