From cf5cc46c0ec1c94f1ee86516653ff62f83264e68 Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Tue, 15 Mar 2022 16:31:04 -0500 Subject: [PATCH] Fix Helm chart kubeVersion comparison error Fixes this error when trying to install the chart: > $ helm upgrade --install vals-operator ./vals-operator-0.5.0.tgz > Release "vals-operator" does not exist. Installing it now. > Error: chart requires kubeVersion: >= 1.19 which is incompatible with Kubernetes v1.21.5-eks-bc4871b The issue and solution is described here: https://github.com/helm/helm/issues/3810 In addition, the duplicate `kubeVersion` field was removed. --- charts/vals-operator/Chart.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/charts/vals-operator/Chart.yaml b/charts/vals-operator/Chart.yaml index 17ae22f..e86268a 100644 --- a/charts/vals-operator/Chart.yaml +++ b/charts/vals-operator/Chart.yaml @@ -2,15 +2,14 @@ apiVersion: v2 name: vals-operator description: This helm chart installs the Digitalis Vals Operator to manage sync secrets from supported backends into Kubernetes icon: https://digitalis.io/wp-content/uploads/2020/06/cropped-Digitalis-512x512-Blue_Digitalis-512x512-Blue-32x32.png -kubeVersion: ">= 1.19" +kubeVersion: ">= 1.19.0-0" type: application # Chart version -version: 0.5.0 +version: 0.5.1 # Latest container tag appVersion: "v0.6.0" -kubeVersion: '>= 1.19' maintainers: - email: info@digitalis.io name: Digitalis.IO