blob: 2849369b5a5fd33dc662f5c95879f87b8eb25d59 [file] [log] [blame]
Mohammed Naser7d15bf72025-03-13 22:14:03 -04001{
2 "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3 "extends": ["config:base"],
Mohammed Naser1711c492025-03-13 23:25:45 -04004 "baseBranches": ["main", "/^stable\\/.*/"],
Mohammed Nasere80d4532025-03-13 23:32:26 -04005 "commitBody": "Skip-Release-Notes",
Mohammed Nasercc1567c2025-03-13 23:46:06 -04006 "prHourlyLimit": 10,
Mohammed Naser7d15bf72025-03-13 22:14:03 -04007 "packageRules": [
8 {
Mohammed Naser58b178c2025-03-14 22:25:12 -04009 "enabled": false,
10 "matchPackagePatterns": ["*"]
Mohammed Naser7d15bf72025-03-13 22:14:03 -040011 },
12 {
Mohammed Naser58b178c2025-03-14 22:25:12 -040013 "enabled": true,
Mohammed Naser7d15bf72025-03-13 22:14:03 -040014 "matchDatasources": ["pypi"],
Mohammed Naser58b178c2025-03-14 22:25:12 -040015 "matchPackageNames": ["magnum-cluster-api"]
16 },
17 {
18 "enabled": true,
19 "matchDatasources": ["git-refs"]
Mohammed Naser1bf51ff2025-03-18 13:24:35 -040020 },
21 {
22 "groupName": "tempest",
23 "matchDatasources": ["git-refs"],
24 "matchFileNames": ["images/tempest/Dockerfile"]
Mohammed Naser433a2022025-03-19 22:33:40 -040025 },
26 {
27 "groupName": "openstack",
28 "matchDatasources": ["git-refs"],
Mohammed Naser03e205a2025-03-19 23:37:52 -040029 "matchPackageNames": ["https://opendev.org/openstack/**"]
Mohammed Naser7d15bf72025-03-13 22:14:03 -040030 }
31 ],
Mohammed Naser58b178c2025-03-14 22:25:12 -040032 "customManagers": [
Mohammed Naser7d15bf72025-03-13 22:14:03 -040033 {
Mohammed Naser58b178c2025-03-14 22:25:12 -040034 "customType": "regex",
Mohammed Naser03e205a2025-03-19 23:37:52 -040035 "fileMatch": ["Dockerfile"],
Mohammed Naser433a2022025-03-19 22:33:40 -040036 "matchStrings": [
Mohammed Naser03e205a2025-03-19 23:37:52 -040037 "# renovate: name=(?<depName>.+?) repo=(?<packageName>.+?) branch=(?<currentValue>.+?)\nARG .+?_GIT_REF=(?<currentDigest>.+?)\n"
Mohammed Naser433a2022025-03-19 22:33:40 -040038 ],
Mohammed Naser03e205a2025-03-19 23:37:52 -040039 "datasourceTemplate": "git-refs"
Mohammed Naser433a2022025-03-19 22:33:40 -040040 },
41 {
42 "customType": "regex",
Mohammed Naser7d15bf72025-03-13 22:14:03 -040043 "fileMatch": ["images/magnum/Dockerfile"],
44 "matchStrings": ["magnum-cluster-api==(?<currentValue>.*?)\\s"],
45 "datasourceTemplate": "pypi",
46 "depNameTemplate": "magnum-cluster-api",
47 "versioningTemplate": "semver"
Mohammed Naser58b178c2025-03-14 22:25:12 -040048 },
49 {
50 "customType": "regex",
51 "fileMatch": ["images/neutron/Dockerfile"],
52 "matchStrings": ["POLICY_SERVER_GIT_REF=(?<currentDigest>.*?)\\n"],
53 "datasourceTemplate": "git-refs",
54 "depNameTemplate": "neutron-policy-server",
55 "packageNameTemplate": "https://review.vexxhost.dev/neutron-policy-server",
56 "currentValueTemplate": "main"
Mohammed Naser7d15bf72025-03-13 22:14:03 -040057 }
58 ]
59}