From 4eea9524fbdd84f17091d2a25adf7d60ce029caa Mon Sep 17 00:00:00 2001 From: Alexandre Chapellon Date: Wed, 6 Nov 2024 17:39:16 +0100 Subject: [PATCH] is ignore.dependencies version spec working the other way round? --- updatecli.d/helm-autodiscovery.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/updatecli.d/helm-autodiscovery.yaml b/updatecli.d/helm-autodiscovery.yaml index 53d01d36a..1cbd84a10 100644 --- a/updatecli.d/helm-autodiscovery.yaml +++ b/updatecli.d/helm-autodiscovery.yaml @@ -15,10 +15,10 @@ autodiscovery: # Skip dependencies we are not interested to bump automatically (testing dependencies) - path: helm/alfresco-content-services dependencies: - postgresql: ">=13.0.0" - elasticsearch: ">=8.0.0" - kibana: ">=8.0.0" + postgresql: "<13.0.0" + elasticsearch: "<8.0.0" + kibana: "<8.0.0" - path: helm/acs-sso-example dependencies: - postgresql: ">=14.0.0" - keycloakx: ">=3.0.0" + postgresql: "<14.0.0" + keycloakx: "<3.0.0"