Update renovate.json5

Signed-off-by: Kjeld Schouten <kjeld@schouten-lebbing.nl>
This commit is contained in:
Kjeld Schouten 2023-06-04 10:19:00 +02:00 committed by GitHub
parent 771a679261
commit 0d161e3bb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 8 deletions

View File

@ -77,7 +77,7 @@
"groupName": "helm dependency non-major", "groupName": "helm dependency non-major",
}, },
// //
// helm ent // helm ent and operators
// //
{ {
"matchDatasources": ["helm"], "matchDatasources": ["helm"],
@ -86,7 +86,7 @@
"enabled": true, "enabled": true,
"labels": ["update/helm/general/major"], "labels": ["update/helm/general/major"],
"groupName": ["helm general major"], "groupName": ["helm general major"],
"matchPaths": ["charts/enterprise/**"], "matchPaths": ["charts/enterprise/**", "charts/operators/**"],
"schedule": [ "schedule": [
"before 10pm on tuesday" "before 10pm on tuesday"
], ],
@ -102,7 +102,7 @@
"bumpVersion": "patch", "bumpVersion": "patch",
"labels": ["update/helm/general/non-major", "automerge"], "labels": ["update/helm/general/non-major", "automerge"],
"groupName": "helm general non-major", "groupName": "helm general non-major",
"matchPaths": ["charts/enterprise/**"], "matchPaths": ["charts/enterprise/**", "charts/operators/**"],
"schedule": [ "schedule": [
"before 10pm on tuesday" "before 10pm on tuesday"
], ],
@ -139,7 +139,7 @@
], ],
}, },
// //
// Tag updates for semantic tags on enterprise Apps // Tag updates for semantic tags on enterprise and operatorApps
// //
{ {
"matchDatasources": ["docker"], "matchDatasources": ["docker"],
@ -147,7 +147,7 @@
"enabled": true, "enabled": true,
"bumpVersion": "major", "bumpVersion": "major",
"labels": ["update/docker/enterprise/major"], "labels": ["update/docker/enterprise/major"],
"matchPaths": ["charts/enterprise/**"], "matchPaths": ["charts/enterprise/**", "charts/operators/**"],
}, },
{ {
"matchDatasources": ["docker"], "matchDatasources": ["docker"],
@ -158,7 +158,7 @@
"enabled": true, "enabled": true,
"bumpVersion": "patch", "bumpVersion": "patch",
"labels": ["update/docker/enterprise/minor"], "labels": ["update/docker/enterprise/minor"],
"matchPaths": ["charts/enterprise/**"], "matchPaths": ["charts/enterprise/**", "charts/operators/**"],
}, },
{ {
"matchDatasources": ["docker"], "matchDatasources": ["docker"],
@ -173,6 +173,19 @@
"labels": ["update/docker/enterprise/patch", "automerge"], "labels": ["update/docker/enterprise/patch", "automerge"],
"matchPaths": ["charts/enterprise/**"], "matchPaths": ["charts/enterprise/**"],
}, },
{
"matchDatasources": ["docker"],
"automerge": false,
"matchUpdateTypes": [
"patch",
"digest",
"pin",
],
"bumpVersion": "patch",
"enabled": true,
"labels": ["update/docker/operator/patch"],
"matchPaths": ["charts/operator/**"],
},
// //
// Tag updates for semantic tags on incubator and dev charts // Tag updates for semantic tags on incubator and dev charts
// //
@ -191,15 +204,25 @@
"minor", "minor",
"patch", "patch",
"digest", "digest",
"pin",
], ],
"bumpVersion": "patch", "bumpVersion": "patch",
"enabled": false, "enabled": false,
"labels": ["update/docker/incubator/non-major", "automerge"], "labels": ["update/docker/incubator/non-major", "automerge"],
"matchPaths": ["charts/incubator/**", "charts/dev/**"], "matchPaths": ["charts/incubator/**", "charts/dev/**"],
}, },
{
"matchDatasources": ["docker"],
"automerge": false,
"matchUpdateTypes": [
"pin",
],
"bumpVersion": "patch",
"enabled": true,
"labels": ["update/docker/incubator/non-major", "automerge"],
"matchPaths": ["charts/incubator/**", "charts/dev/**"],
},
// //
// Tag updates for semantic tags on all but enterprise and incubator Apps // Tag updates for semantic tags on all but enterprise, operator and incubator Apps
// //
{ {
"matchDatasources": ["docker"], "matchDatasources": ["docker"],
@ -268,6 +291,11 @@
"matchPackagePrefixes": ["tccr.io/truecharts/webtop"], "matchPackagePrefixes": ["tccr.io/truecharts/webtop"],
"groupName": "webtop", "groupName": "webtop",
}, },
{
"matchDatasources": ["docker"],
"matchPackagePrefixes": ["tccr.io/truecharts/metallb"],
"groupName": "metallb",
},
{ {
"matchDatasources": ["docker"], "matchDatasources": ["docker"],
"matchPackagePrefixes": ["tccr.io/truecharts/zabbix"], "matchPackagePrefixes": ["tccr.io/truecharts/zabbix"],