3 Commits

Author SHA1 Message Date
7b91ddbcb8 Update renovate.json5
All checks were successful
Build container / Build (push) Successful in 34s
2025-07-30 11:40:56 +02:00
8583ccd249 refined package rules
All checks were successful
Build container / Build (push) Successful in 45s
2025-07-30 00:18:13 +02:00
c43bd2b7ec Update deployment/kustomization.yaml
All checks were successful
Build container / Build (push) Successful in 47s
2025-07-29 15:47:14 +00:00
2 changed files with 20 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ resources:
- ./sealedsecret.yaml
- ./pvc.yaml
namespace: journal-bot
namespace: journal
images:
- name: journal

View File

@@ -1,14 +1,31 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"regexManagers": [
{
"fileMatch": ["kustomization\\.yaml"],
"matchStrings": [
"- name:\\s*(?<depName>\\S+)\\s*\\n\\s*newName:\\s*(?<lookupName>\\S+)\\s*\\n\\s*newTag:\\s*(?<currentValue>[a-f0-9]{7,40})"
],
"datasourceTemplate": "docker",
"versioningTemplate": "loose",
"extractVersionTemplate": "{{ currentValue }}",
"lookupNameTemplate": "{{ lookupName }}"
},
],
"packageRules": [
// Fully automatically update the container version referenced in the deployment
{
"matchPackageNames": ["@kubernetes-sigs/kustomize"],
"automerge": true,
"automergeType": "branch",
"ignoreTests": true
"ignoreTests": true,
"commitMessagePrefix": "[skip ci]",
"registryUrls": [
"https://git.kluster.moll.re"
],
// Since the images use the commit sha as their tag, simply match any tag
"versioning": "regex:(.*)"
}
],
"commitMessagePrefix" : "[skip ci]"
}