add helm-chart charts folder support

This commit is contained in:
Kjeld Schouten
2024-10-13 00:35:05 +02:00
parent 7808717475
commit 845c1b79a7
4 changed files with 43 additions and 3 deletions
+4 -3
View File
@@ -1,6 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
extends: [
]
"extends": [
"github>truecharts/public//.github/renovate/kinds/helm.json5",
"github>truecharts/public//.github/renovate/kinds/helm-values.json5"
]
}
+13
View File
@@ -0,0 +1,13 @@
{
"flux": {
"fileMatch": [
".ya?ml(?:\\.j2)?$" // Matches all .yaml and .yml files, optionally with a .j2 extension
],
"enabled": true, // Enable Flux updates
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
"commitMessageSuffix": "fix: update Flux resource" // Customize commit message suffix
},
"ignore": [
// Add any global ignores here
]
}
+13
View File
@@ -0,0 +1,13 @@
{
"helm-values": {
"fileMatch": [
".ya?ml(?:\\.j2)?$" // Matches all .yaml and .yml files, optionally with a .j2 extension
],
"enabled": true, // Enable image reference updates in values.yaml
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
"commitMessageSuffix": "fix: update image references" // Customize commit message suffix
},
"ignore": [
// Add any global ignores here if needed
]
}
+13
View File
@@ -0,0 +1,13 @@
{
"helm": {
"fileMatch": [
"Chart\\.ya?ml(?:\\.j2)?$" // Matches Chart.yaml or Chart.yml files, optionally with a .j2 extension
],
"enabled": true, // Enable Helm chart updates
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
"commitMessageSuffix": "fix: update Helm chart" // Customize commit message suffix
},
"ignore": [
// Add any global ignores here if needed
]
}