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

64 lines
2.1 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": ["Preset for use with kubernetes repositories"],
"extends": ["github>thegeeklab/renovate-presets:base"],
"flux": {
"fileMatch": ["^flux/.+\\.ya?ml$"]
},
"helm-values": {
"fileMatch": ["^flux/(.+/)patches/(helmRelease)\\.ya?ml$"],
"pinDigests": true
},
"kubernetes": {
"fileMatch": [
"^flux/(.+/)patches/(deployment|postgresCluster|minioTenant)\\.ya?ml$"
]
},
"packageRules": [
{
"description": "Set semantic commit scope for docker digests",
"groupName": "docker digests",
"matchDatasources": ["docker"],
"matchUpdateTypes": ["pin", "digest"],
"semanticCommitScope": "docker"
},
{
"description": "Automerge digest updates (usually security patches)",
"groupName": "docker digests",
"matchDatasources": ["docker"],
"matchPackagePatterns": ["^hetznercloud/hcloud-cloud-controller-manager"],
"matchUpdateTypes": ["pin", "digest"],
"automerge": true
},
{
"description": "Disable kubernetes-api datasource",
"datasources": ["kubernetes-api"],
"enabled": false
}
],
"regexManagers": [
{
"fileMatch": ["^flux/(.+/)patches/(postgresCluster)\\.ya?ml$"],
"matchStrings": [
"\\s+(?:imageName):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
],
"datasourceTemplate": "docker"
},
{
"fileMatch": ["^flux/(.+/)patches/(config)\\.ya?ml$"],
"matchStrings": [
".+(?:_IMAGE):\\s+\"?'?(?<depName>[^:\\s]+):(?<currentValue>[^\"'@]+)(?:@(?<currentDigest>sha256:[a-f0-9]+))?\"?'?"
],
"datasourceTemplate": "docker"
},
{
"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}}"
}
]
}