diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..a9aaea0 --- /dev/null +++ b/renovate.json @@ -0,0 +1,29 @@ +{ + "extends": ["config:base"], + "prHourlyLimit": 5, + "regexManagers": [ + { + "description": "Baseline upgrades", + "fileMatch": ["\\.jsonnet$"], + "matchStrings": [ + "\\s+chart::\\s\\\"(?.*)\\\",", + "\\s+version::\\s\\\"(?.*)\\\",", + "\\s+repo::\\s\\\"(?.*)\\\"," + ], + "matchStringsStrategy": "combination", + "datasourceTemplate": "helm" + }, + { + "description": "Edge case prometheus", + "fileMatch": ["prometheus-stack\\.jsonnet"], + "matchStrings": [ + "\\s+chart::\\s\\\"(?.*)\\\",", + "\\s+\\\"version\\\"\:\\s\\\"(?.*)\\\",", + "\\s+repo::\\s\\\"(?.*)\\\"," + ], + "matchStringsStrategy": "combination", + "datasourceTemplate": "helm" + } + + ] +}