From 1a98b0ab4d248544a03d83da13a66b399819f713 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Sat, 23 Nov 2024 20:46:35 +0100 Subject: [PATCH] feat(helm): release check on most-supported Kubernetes version (#848) Since Kubernetes 1.22, there was never a big need to actually upgrade REANA source code to make it work on new Kubernetes releases. (This is thanks to the fact that REANA uses pretty stable Kubernetes API internally.) This commit therefore releases the upper boundary check on the supported Kubernetes versions in order to be more welcoming to future Kubernetes upgrades, alleviating the need to manually bump the supported version number. --- helm/reana/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/reana/Chart.yaml b/helm/reana/Chart.yaml index ed58383f..55aeb31b 100644 --- a/helm/reana/Chart.yaml +++ b/helm/reana/Chart.yaml @@ -27,7 +27,7 @@ keywords: - reusable-science type: application version: 0.9.3 -kubeVersion: '>= 1.21.0-0 < 1.32.0-0' +kubeVersion: '>= 1.21.0-0' dependencies: - name: traefik version: 10.6.2