renovate/lib/modules/manager/helm-values
Jamie Magee 3589d0e222
refactor: remove deprecated loadFixture calls (#16404)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2022-07-04 04:18:53 +00:00
..
__fixtures__ refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
__snapshots__ refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
extract.spec.ts refactor: remove deprecated loadFixture calls (#16404) 2022-07-04 04:18:53 +00:00
extract.ts feat(helm-manager): allow either tag or version for images in helm charts (#16058) 2022-06-23 17:36:01 +00:00
index.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
readme.md feat(helm-manager): allow either tag or version for images in helm charts (#16058) 2022-06-23 17:36:01 +00:00
types.ts feat(helm-manager): allow either tag or version for images in helm charts (#16058) 2022-06-23 17:36:01 +00:00
util.ts feat(helm-manager): allow either tag or version for images in helm charts (#16058) 2022-06-23 17:36:01 +00:00

Renovate supports updating of Docker dependencies within Helm Chart values.yaml files or other YAML files that use the same format (via fileMatch configuration). Updates are performed if the files follow the conventional format used in most of the Helm charts:

image:
  repository: 'some-docker/dependency'
  tag: v1.0.0
  registry: registry.example.com # optional key, will default to "docker.io"

image:
  repository: 'some-docker/dependency'
  version: v1.0.0

coreImage:
  registry: docker.io
  repository: bitnami/harbor-core
  tag: 2.1.3-debian-10-r38

If you need to change the versioning format, read the versioning documentation to learn more.