renovate-presets/kubernetes.json

72 lines
2.3 KiB
JSON
Raw Normal View History

2022-12-16 22:14:33 +01:00
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
2024-01-17 21:08:31 +01:00
"description": ["Preset for use with Kubernetes repositories"],
2022-12-16 22:14:33 +01:00
"extends": ["github>thegeeklab/renovate-presets:base"],
"flux": {
2023-03-22 08:29:41 +01:00
"fileMatch": ["^flux/.+\\.ya?ml$"]
2023-03-21 09:25:27 +01:00
},
2023-03-21 13:56:09 +01:00
"helm-values": {
"fileMatch": [
"^flux/(?:.+/)overlays/(?:.+/)patches/(?:helmRelease)\\.ya?ml$"
],
"pinDigests": true
2023-03-21 13:56:09 +01:00
},
"kubernetes": {
"fileMatch": [
"^flux/(?:.+/)overlays/(?:.+/)patches/(?:deployment|statefulSet|postgresCluster|minioTenant)\\.ya?ml$"
]
2023-03-21 13:56:09 +01:00
},
2022-12-16 22:14:33 +01:00
"packageRules": [
{
"description": "Set semantic commit scope for docker digests",
2022-12-16 22:14:33 +01:00
"groupName": "docker digests",
"matchDatasources": ["docker"],
"matchUpdateTypes": ["pin", "digest"],
"semanticCommitScope": "docker"
},
{
"description": "Automerge digest updates (usually security patches)",
"groupName": "docker digests",
2024-02-15 12:16:19 +01:00
"extends": ["schedule:daily"],
2022-12-16 22:14:33 +01:00
"matchDatasources": ["docker"],
"matchPackagePatterns": ["^hetznercloud/hcloud-cloud-controller-manager"],
"matchUpdateTypes": ["pin", "digest"],
"automerge": true
},
2022-12-16 22:14:33 +01:00
{
"description": "Disable kubernetes-api datasource",
"datasources": ["kubernetes-api"],
"enabled": false
2022-12-16 22:14:33 +01:00
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"^flux/(?:.+/)overlays/(?:.+/)patches/(?:postgresCluster)\\.ya?ml$"
],
"matchStrings": [
"\\s+(?:imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@\\s]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
],
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"fileMatch": ["^flux/(?:.+/)overlays/(?:.+/)(?:configmap)\\.ya?ml$"],
"matchStrings": [
".+(?:_IMAGE):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@\\s]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
],
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"fileMatch": ["^flux/crds/.+\\.ya?ml$"],
"matchStrings": [
"# renovate: registryUrl=(?<registryUrl>.*?) chart=(?<depName>.*)\\s.+k8up-(?<currentValue>.*?)/.+"
],
"datasourceTemplate": "{{#if datasource}}{{{datasource}}}{{else}}helm{{/if}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
2022-12-16 22:14:33 +01:00
]
}