From 6e54fe30671fe4d710f528d5a9afae72747a3c7d Mon Sep 17 00:00:00 2001 From: Vitor Vezani Date: Fri, 5 Jun 2026 09:32:09 -0300 Subject: [PATCH 1/3] add renovate to stable charts --- renovate.json | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 000000000..b208d21d5 --- /dev/null +++ b/renovate.json @@ -0,0 +1,55 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:recommended", ":dependencyDashboard"], + "labels": ["dependencies"], + "prConcurrentLimit": 10, + "branchConcurrentLimit": 10, + "minimumReleaseAge": "7 days", + "ignorePaths": ["incubator/**", "docs/**"], + "registryAliases": { + "stable": "https://charts.fairwinds.com/stable" + }, + "enabledManagers": ["helmv3", "helm-values", "circleci"], + "packageRules": [ + { + "description": "Resolve @stable Helm repo alias and explicit fairwinds-stable URLs to the published index", + "matchManagers": ["helmv3"], + "matchDatasources": ["helm"], + "matchSourceUrls": [ + "https://charts.fairwinds.com/stable", + "https://charts.fairwinds.com/stable/" + ], + "registryUrls": ["https://charts.fairwinds.com/stable"] + }, + { + "matchManagers": ["helmv3"], + "matchUpdateTypes": ["major"], + "groupName": "Helm chart major updates" + }, + { + "matchManagers": ["helm-values"], + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], + "groupName": "Helm values non-major updates" + }, + { + "matchManagers": ["helm-values"], + "matchUpdateTypes": ["major"], + "groupName": "Helm values major updates" + }, + { + "matchManagers": ["circleci"], + "matchUpdateTypes": ["minor", "patch", "pin", "digest"], + "groupName": "CircleCI non-major updates" + }, + { + "matchManagers": ["circleci"], + "matchUpdateTypes": ["major"], + "groupName": "CircleCI major updates" + }, + { + "description": "Every upgrade: upstream release must be at least 7 days old", + "matchManagers": ["helmv3", "helm-values", "circleci"], + "minimumReleaseAge": "7 days" + } + ] +} From f4ea04e3c016f946a053960ce9c6bd6ff1284d0a Mon Sep 17 00:00:00 2001 From: Vitor Vezani Date: Fri, 5 Jun 2026 12:22:34 -0300 Subject: [PATCH 2/3] add chart bump --- renovate.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/renovate.json b/renovate.json index b208d21d5..1602bdea5 100644 --- a/renovate.json +++ b/renovate.json @@ -46,6 +46,18 @@ "matchUpdateTypes": ["major"], "groupName": "CircleCI major updates" }, + { + "description": "Bump chart version on dependency and image updates (top-level version: only)", + "matchManagers": ["helmv3", "helm-values"], + "matchFileNames": ["stable/**"], + "bumpVersions": [ + { + "filePatterns": ["{{packageFileDir}}/Chart.{yaml,yml}"], + "matchStrings": ["(?m)^version:\\s(?[^\\s]+)"], + "bumpType": "{{#if isPatch}}patch{{else}}minor{{/if}}" + } + ] + }, { "description": "Every upgrade: upstream release must be at least 7 days old", "matchManagers": ["helmv3", "helm-values", "circleci"], From 573ec019cb7cca725371d93e03ab8780cd734737 Mon Sep 17 00:00:00 2001 From: Vitor Vezani Date: Fri, 5 Jun 2026 12:24:35 -0300 Subject: [PATCH 3/3] fix docs --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 1602bdea5..82a35b5b8 100644 --- a/renovate.json +++ b/renovate.json @@ -47,7 +47,7 @@ "groupName": "CircleCI major updates" }, { - "description": "Bump chart version on dependency and image updates (top-level version: only)", + "description": "Bump chart version on dependency and image updates", "matchManagers": ["helmv3", "helm-values"], "matchFileNames": ["stable/**"], "bumpVersions": [