Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/relution/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sources:

type: application

version: 2.7.0-1
version: 2.7.1-1

appVersion: "5.34.0"

Expand Down
2 changes: 2 additions & 0 deletions charts/relution/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ s2s:
pullPolicy: IfNotPresent
tag: "24.04"
packages:
# renovate: suite=noble depName=strongswan
strongswan: "5.9.13-2ubuntu4"
# renovate: suite=noble depName=iptables
iptables: "1.8.10-3ubuntu2"
livenessProbe:
enabled: true
Expand Down
6 changes: 0 additions & 6 deletions renovate.json

This file was deleted.

24 changes: 24 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"customManagers:dockerfileVersions",
"customManagers:helmChartYamlAppVersions"
],

"branchPrefix": "deps/",
"semanticCommits": "enabled",

"customManagers": [
{
"description": "Ubuntu package versions in Helm values", // adapted from https://docs.renovatebot.com/modules/datasource/deb/#usage-example
"customType": "regex",
"fileMatch": ["(^|/)values(\\.[-\\w]+)*\\.ya?ml$"],
"matchStrings": [
"#\\s*renovate:\\s*suite=(?<suite>\\S+)(?:\\s+arch=(?<arch>\\S+))?\\s+depName=(?<depName>\\S+)\\s*\\n\\s*(?<packageName>\\S+):\\s*\"(?<currentValue>[^\"]+)\""
],
"registryUrlTemplate": "https://archive.ubuntu.com/ubuntu?suite={{suite}}&components=main,restricted,universe,multiverse&binaryArch={{#if arch}}{{arch}}{{else}}amd64{{/if}}",
"datasourceTemplate": "deb"
}
]
}