mirror of
https://github.com/thegeeklab/renovate-presets.git
synced 2024-11-24 22:10:38 +00:00
fix: more strict regex for flux overlays
This commit is contained in:
parent
e72513796c
commit
275f5afa08
@ -6,12 +6,14 @@
|
||||
"fileMatch": ["^flux/.+\\.ya?ml$"]
|
||||
},
|
||||
"helm-values": {
|
||||
"fileMatch": ["^flux/(.+/)patches/(helmRelease)\\.ya?ml$"],
|
||||
"fileMatch": [
|
||||
"^flux/(?:.+/)overlays/(?:.+/)patches/(?:helmRelease)\\.ya?ml$"
|
||||
],
|
||||
"pinDigests": true
|
||||
},
|
||||
"kubernetes": {
|
||||
"fileMatch": [
|
||||
"^flux/(.+/)patches/(deployment|postgresCluster|minioTenant)\\.ya?ml$"
|
||||
"^flux/(?:.+/)overlays/(?:.+/)patches/(?:deployment|postgresCluster|minioTenant)\\.ya?ml$"
|
||||
]
|
||||
},
|
||||
"packageRules": [
|
||||
@ -38,14 +40,16 @@
|
||||
],
|
||||
"regexManagers": [
|
||||
{
|
||||
"fileMatch": ["^flux/(.+/)patches/(postgresCluster)\\.ya?ml$"],
|
||||
"fileMatch": [
|
||||
"^flux/(?:.+/)overlays/(?:.+/)patches/(?:postgresCluster)\\.ya?ml$"
|
||||
],
|
||||
"matchStrings": [
|
||||
"\\s+(?:imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
|
||||
],
|
||||
"datasourceTemplate": "docker"
|
||||
},
|
||||
{
|
||||
"fileMatch": ["^flux/(.+/)patches/(config)\\.ya?ml$"],
|
||||
"fileMatch": ["^flux/(?:.+/)overlays/(?:.+/)(?:configmap)\\.ya?ml$"],
|
||||
"matchStrings": [
|
||||
".+(?:_IMAGE):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user