-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathrenovate.json
129 lines (129 loc) · 3.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"extends": [
"github>defenseunicorns/uds-common//config/renovate.json5",
":semanticCommits",
":semanticCommitTypeAll(chore)"
],
"branchConcurrentLimit": 0,
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"separateMajorMinor": false,
"helm-values": {
"ignorePaths": ["src/neuvector/values"]
},
"regexManagers": [
{
"fileMatch": ["^src/neuvector/values/.*\\.yaml$"],
"matchStrings": [
"registry:\\s+(?<registryUrl>.*?)\n(.|\\s)*repository:\\s+(?<depName>.*?)\\s+tag:\\s+[\"]?(?<currentValue>[^\"]*)[\"]?"
],
"registryUrlTemplate": "https://{{{registryUrl}}}",
"datasourceTemplate": "docker"
},
{
"fileMatch": ["^src/neuvector/values/upstream-values\\.yaml$"],
"matchStrings": [
"registry: docker.io\\s+tag:\\s+[\"]?(?<currentValue>[^\"]*)[\"]?"
],
"depNameTemplate": "docker.io/neuvector/controller",
"datasourceTemplate": "docker"
},
{
"fileMatch": ["^src/neuvector/values/registry1-values\\.yaml$"],
"matchStrings": [
"registry: registry1.dso.mil\\s+tag:\\s+[\"]?(?<currentValue>[^\"]*)[\"]?"
],
"depNameTemplate": "registry1.dso.mil/ironbank/neuvector/neuvector/controller",
"datasourceTemplate": "docker"
}
],
"packageRules": [
{
"matchFileNames": ["src/istio/**"],
"groupName": "istio",
"commitMessageTopic": "istio"
},
{
"matchFileNames": ["src/promtail/**"],
"groupName": "promtail",
"commitMessageTopic": "promtail"
},
{
"matchFileNames": ["src/velero/**"],
"groupName": "velero",
"commitMessageTopic": "velero"
},
{
"matchFileNames": ["src/tempo/**"],
"groupName": "tempo",
"commitMessageTopic": "tempo"
},
{
"matchFileNames": ["src/prometheus-stack/**"],
"groupName": "prometheus-stack",
"commitMessageTopic": "prometheus-stack"
},
{
"matchFileNames": ["src/neuvector/**"],
"groupName": "neuvector",
"commitMessageTopic": "neuvector"
},
{
"matchFileNames": ["src/metrics-server/**"],
"groupName": "metrics-server",
"commitMessageTopic": "metrics-server"
},
{
"matchFileNames": ["src/loki/**"],
"groupName": "loki",
"commitMessageTopic": "loki"
},
{
"matchFileNames": ["src/kiali/**"],
"groupName": "kiali",
"commitMessageTopic": "kiali"
},
{
"matchFileNames": ["src/keycloak/**"],
"groupName": "keycloak",
"commitMessageTopic": "keycloak"
},
{
"matchFileNames": ["src/grafana/**"],
"groupName": "grafana",
"commitMessageTopic": "grafana"
},
{
"matchPackageNames": ["defenseunicorns/zarf", "ghcr.io/defenseunicorns/packages/init"],
"groupName": "zarf",
"commitMessageTopic": "zarf"
},
{
"matchPackageNames": ["defenseunicorns/uds-cli"],
"groupName": "uds",
"commitMessageTopic": "uds"
},
{
"matchPackageNames": ["defenseunicorns/uds-k3d", "ghcr.io/defenseunicorns/packages/uds-k3d"],
"groupName": "uds-k3d",
"commitMessageTopic": "uds-k3d"
},
{
"matchFileNames": [".github/workflows/**", ".github/actions/**"],
"excludePackageNames": ["defenseunicorns/zarf", "defenseunicorns/uds-cli"],
"groupName": "githubactions",
"commitMessageTopic": "githubactions",
"pinDigests": true
},
{
"matchFileNames": [".github/test-infra/**"],
"groupName": "test-infra",
"commitMessageTopic": "test-infra"
},
{
"matchFileNames": ["package.json", "package-lock.json", "tasks/create.yaml"],
"groupName": "pepr",
"commitMessageTopic": "pepr"
}
]
}