-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate.json
34 lines (34 loc) · 1.18 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":dependencyDashboard", ":automergeMinor"],
"reviewers": ["mrzzy"],
"ignoreDeps": ["aiobotocore"],
"regexManagers": [
{
"fileMatch": "^k8s/.*/kustomization.yaml$",
"matchStrings": [
"(?<depName>kubernetes\\/ingress-nginx)\\/controller-(?<currentValue>.*)\\/"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "loose",
"extractVersionTemplate": "^controller-$(?<version>.*)$"
},
{
"fileMatch": "^k8s/.*/kustomization.yaml$",
"matchStrings": [
"(?<depName>kubenetes-sigs\\/metrics-server)\\/releases\\/download\\/(?<currentValue>.*)\\/"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "loose",
"extractVersionTemplate": "^$(?<version>v.*)$"
},
{
"fileMatch": "^\\.github/workflows/.*\\.yaml",
"matchStrings": ["terraform_version: (?<currentValue>.*)"],
"depNameTemplate": "hashicorp/terraform",
"datasourceTemplate": "github-releases",
"versioningTemplate": "hashicorp",
"extractVersionTemplate": "v(?<version>.*)"
}
]
}