add helm-chart charts folder support
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$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"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -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
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -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
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user