0

When I run helm dependency build I get

Error: can't get a valid version for repositories ingress-nginx. Try changing the version constraint in Chart.yaml

I've tried all kinds of things the version,

1.x.x
~1
^1

Everything generates that error. This the relevant part of my Chart.yaml

- name: ingress-nginx
    repository: https://kubernetes.github.io/ingress-nginx
    version: 1.x.x
Evan Carroll
  • 2,091
  • 3
  • 22
  • 65

1 Answers1

0

App Version vs Chart Version

There are two pieces of software in play with different version numbers,

The helm dependency version field is for the version of the chart. Not the upstream software being packaged.

Evan Carroll
  • 2,091
  • 3
  • 22
  • 65