renovate: change crd matching

This commit is contained in:
Vivian 2022-06-01 10:54:40 +02:00
parent 33d98a61c9
commit da3ced9f1a
No known key found for this signature in database
GPG key ID: A3923C699D1A3BDA

View file

@ -91,20 +91,22 @@ data:
],
"regexManagers": [
{
"description": "Process GitRepository CRD dependencies - Chart and Github Release are the same version",
"fileMatch": ["flux/cluster/crds/.+\\.ya?ml$"],
"fileMatch": [
"flux/cluster/crds/traefik/.+\\.ya?ml$"
],
"matchStrings": [
"registryUrl=(?<registryUrl>\\S+) chart=(?<depName>\\S+)\n.*?(?<currentValue>[^-\\s]*)\n"
"registryUrl=(?<registryUrl>.*?) chart=(?<depName>.*?)\n *tag: v(?<currentValue>.*)\n"
],
"datasourceTemplate": "helm"
},
{
"description": "Process Kustomization CRD dependencies - Image and Github Release are the same version",
"fileMatch": ["flux/cluster/crds/.+\\.ya?ml$"],
"matchStrings": [
"datasource=(?<datasource>\\S+) image=(?<depName>\\S+)\n.*?-\\s(.*?)\/(?<currentValue>[^/]+)\/[^/]+\n"
"fileMatch": [
"flux/cluster/crds/external-secrets/.+\\.ya?ml$"
],
"datasourceTemplate": "docker"
}
"matchStrings": [
"registryUrl=(?<registryUrl>.*?) chart=(?<depName>.*?)\n *tag: helm-chart-(?<currentValue>.*)\n"
],
"datasourceTemplate": "helm"
},
]
};