From 2287b51e00141811a736f70985915becf572a0fb Mon Sep 17 00:00:00 2001 From: JenTing Hsiao Date: Thu, 2 Sep 2021 13:01:03 +0800 Subject: [PATCH] Helm chart doesn't allow `-xxx` as a valid version - Unless we add `-0`, see helm/helm#9371 for details. - Besides that, the semver parser doesn't allow with prefix `v`. Remove the prefix `v`. https://github.com/rancher/rancher/blob/release/v2.5.9/pkg/catalog/manager/manager.go#L218-L221 Longhorn 2963 Signed-off-by: JenTing Hsiao --- chart/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chart/Chart.yaml b/chart/Chart.yaml index ca33e39..4b3c3cd 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 name: longhorn version: 1.2.0 appVersion: v1.2.0 -kubeVersion: ">=v1.18.0" +kubeVersion: ">=1.18.0-0" description: Longhorn is a distributed block storage system for Kubernetes. keywords: - longhorn