Init
Some checks failed
Build talosctl+talhelper+sops image (push on main only) / build (push) Failing after 2m19s

This commit is contained in:
Marc Plano-Lesay 2025-11-24 15:14:51 +11:00
parent 6d878b000a
commit 5becdb9379
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF
4 changed files with 331 additions and 2 deletions

51
renovate.json Normal file
View file

@ -0,0 +1,51 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": ["regex", "docker"],
"pinDigests": true,
"regexManagers": [
{
"fileMatch": ["^Dockerfile$"]
,"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s+versioning=(?<versioning>[^\\s]+)\\nARG\\s+TALOSCTL_VERSION=(?<currentValue>[^\\n]+)"
],
"datasourceTemplate": "{{{datasource}}}",
"depNameTemplate": "{{{depName}}}",
"versioningTemplate": "{{{versioning}}}",
"extractVersionTemplate": "^v?(?<version>.*)$",
"autoReplaceStringTemplate": "ARG TALOSCTL_VERSION={{newValue}}"
},
{
"fileMatch": ["^Dockerfile$"]
,"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s+versioning=(?<versioning>[^\\s]+)\\nARG\\s+TALHELPER_VERSION=(?<currentValue>[^\\n]+)"
],
"datasourceTemplate": "{{{datasource}}}",
"depNameTemplate": "{{{depName}}}",
"versioningTemplate": "{{{versioning}}}",
"extractVersionTemplate": "^v?(?<version>.*)$",
"autoReplaceStringTemplate": "ARG TALHELPER_VERSION={{newValue}}"
},
{
"fileMatch": ["^Dockerfile$"]
,"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>[^\\s]+)\\s+depName=(?<depName>[^\\s]+)\\s+versioning=(?<versioning>[^\\s]+)\\nARG\\s+SOPS_VERSION=(?<currentValue>[^\\n]+)"
],
"datasourceTemplate": "{{{datasource}}}",
"depNameTemplate": "{{{depName}}}",
"versioningTemplate": "{{{versioning}}}",
"extractVersionTemplate": "^v?(?<version>.*)$",
"autoReplaceStringTemplate": "ARG SOPS_VERSION={{newValue}}"
}
],
"packageRules": [
{
"description": "Group all tool bumps into one PR",
"matchManagers": ["regex"],
"groupName": "talos tools versions",
"prPriority": 0
}
]
}