0
0
mirror of https://github.com/thegeeklab/renovate-presets.git synced 2024-06-02 18:19:40 +02:00

fix: fix digest pinning for custom kubernetes image resources

This commit is contained in:
Robert Kaussow 2023-03-22 18:58:19 +01:00
parent 93242db8ca
commit 4ff5d889e3
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0

View File

@ -32,6 +32,11 @@
"description": "Disable kubernetes-api datasource", "description": "Disable kubernetes-api datasource",
"datasources": ["kubernetes-api"], "datasources": ["kubernetes-api"],
"enabled": false "enabled": false
},
{
"matchDatasources": ["docker"],
"matchPaths": ["flux/**/patchCluster.yaml"],
"pinDigests": true
} }
], ],
"regexManagers": [ "regexManagers": [
@ -40,8 +45,7 @@
"matchStrings": [ "matchStrings": [
"\\s+(imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+?)(@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?\\s" "\\s+(imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+?)(@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?\\s"
], ],
"datasourceTemplate": "docker", "datasourceTemplate": "docker"
"pinDigests": true
} }
] ]
} }