From da3ced9f1a55783cf5dd7ddad327152862c4fe13 Mon Sep 17 00:00:00 2001 From: Victor Roest Date: Wed, 1 Jun 2022 10:54:40 +0200 Subject: [PATCH] renovate: change crd matching --- .../renovate/renovate-infrastructure.yaml | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/flux/cluster/apps/gitops/renovate/renovate-infrastructure.yaml b/flux/cluster/apps/gitops/renovate/renovate-infrastructure.yaml index 24b048e..049f903 100644 --- a/flux/cluster/apps/gitops/renovate/renovate-infrastructure.yaml +++ b/flux/cluster/apps/gitops/renovate/renovate-infrastructure.yaml @@ -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=(?\\S+) chart=(?\\S+)\n.*?(?[^-\\s]*)\n" + "registryUrl=(?.*?) chart=(?.*?)\n *tag: v(?.*)\n" ], "datasourceTemplate": "helm" }, { - "description": "Process Kustomization CRD dependencies - Image and Github Release are the same version", - "fileMatch": ["flux/cluster/crds/.+\\.ya?ml$"], - "matchStrings": [ - "datasource=(?\\S+) image=(?\\S+)\n.*?-\\s(.*?)\/(?[^/]+)\/[^/]+\n" + "fileMatch": [ + "flux/cluster/crds/external-secrets/.+\\.ya?ml$" ], - "datasourceTemplate": "docker" - } + "matchStrings": [ + "registryUrl=(?.*?) chart=(?.*?)\n *tag: helm-chart-(?.*)\n" + ], + "datasourceTemplate": "helm" + }, ] };