mirror of
https://github.com/morten-olsen/homelab-apps.git
synced 2026-02-08 01:36:28 +01:00
36 lines
813 B
Plaintext
36 lines
813 B
Plaintext
{
|
|
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
|
|
extends: [
|
|
'config:recommended',
|
|
],
|
|
packageRules: [
|
|
{
|
|
groupName: 'Docker images',
|
|
groupSlug: 'dockerimages',
|
|
matchDatasources: [
|
|
'docker',
|
|
],
|
|
pinDigests: true,
|
|
},
|
|
],
|
|
'helm-values': {
|
|
managerFilePatterns: [
|
|
'/^charts/.*/values\\.yaml$/',
|
|
],
|
|
},
|
|
customManagers: [
|
|
{
|
|
customType: 'regex',
|
|
managerFilePatterns: [
|
|
'/^charts/.*/values\\.yaml$/',
|
|
],
|
|
matchStrings: [
|
|
"repository:s*'(?<depName>.*?)'\ns*tag:s*'(?<currentValue>.*?)'",
|
|
'repository:s*"(?<depName>.*?)"\ns*tag:s*"(?<currentValue>.*?)"',
|
|
'repository:s*(?<depName>.*?)\ns*tag:s*(?<currentValue>.*)',
|
|
],
|
|
datasourceTemplate: 'docker',
|
|
},
|
|
],
|
|
}
|