Skip to content

Commit

Permalink
Fix Helm chart kubeVersion comparison error
Browse files Browse the repository at this point in the history
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:
helm/helm#3810

In addition, the duplicate `kubeVersion` field was removed.
  • Loading branch information
irasnyd committed Mar 15, 2022
1 parent 5e25072 commit cf5cc46
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions charts/vals-operator/Chart.yaml
Expand Up @@ -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

0 comments on commit cf5cc46

Please sign in to comment.