block some digestpinning

This commit is contained in:
Kjeld Schouten
2024-10-13 12:29:29 +02:00
parent 5dc80213fb
commit 91e8c077a5
5 changed files with 7 additions and 31 deletions
+2 -1
View File
@@ -9,7 +9,8 @@
],
"enabled": true, // Enable Flux updates
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
"semanticCommitScope": "Flux Objects"
"semanticCommitScope": "Flux Objects",
"pinDigests": false // Set to false to not pin digest references
},
"branchPrefix": "flux-",
"ignore": [
+2 -1
View File
@@ -7,7 +7,8 @@
],
"enabled": true, // Enable Helm chart updates
"semanticCommitScope": "helm",
"updateTypes": ["major", "minor", "patch"] // Allow updates for all version types
"updateTypes": ["major", "minor", "patch"], // Allow updates for all version types
"pinDigests": false // Set to false to not pin digest references
},
"ignore": [
// Add any global ignores here if needed
+1 -2
View File
@@ -33,8 +33,7 @@
"github>truecharts/public//.github/renovate/special/customRules.json5",
"github>truecharts/public//.github/renovate/special/customVersioning.json5",
"github>truecharts/public//.github/renovate/special/schedules.json5",
"github>truecharts/public//.github/renovate/special/customClusterManagers.json5",
"github>truecharts/public//.github/renovate/special/talconfig.json5"
"github>truecharts/public//.github/renovate/special/customClusterManagers.json5"
],
// Main Renovate configuration that lists package rules for various paths
"packageRules": [
@@ -10,7 +10,8 @@
"datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)\\n.+/(?<currentValue>(v|\\d)[^/]+)"
],
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}github-releases{{/if}}",
"branchPrefix": "regex-"
"branchPrefix": "regex-",
"pinDigests": false // Set to false to not pin digest references
},
{
"customType": "regex",
-26
View File
@@ -1,26 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"paths": ["**/talconfig.yaml"], // Matches any file named talconfig.yaml in any directory
"enabled": true, // Enable processing for these files
"datasource": "docker", // Specify that this is a Docker datasource
"depName": "ghcr.io/siderolabs/installer", // Specific dependency to process
"ignore": [
// Specify any dependencies to ignore if necessary
]
},
{
"paths": ["**/talconfig.yaml"], // Matches any file named talconfig.yaml in any directory
"enabled": true, // Enable processing for these files
"datasource": "docker", // Specify that this is a Docker datasource
"depName": "ghcr.io/siderolabs/kubelet", // Specific dependency to process
"ignore": [
// Specify any dependencies to ignore if necessary
]
}
],
"ignoreDeps": [
// List any other dependencies to ignore globally if needed
]
}