0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 13:38:32 +00:00
renovatebot_renovate/lib/modules/manager/helm-values
Risu 397ab49ef3
docs(managers): add missing url and displayName (#32621)
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
2024-12-01 08:47:27 +00:00
..
__fixtures__ fix: better branch code coverage (#24270) 2023-09-06 11:26:22 +00:00
__snapshots__ test: use jest v29 (#17151) 2022-08-16 14:22:29 +02:00
extract.spec.ts feat(manager/helm-values): Add support for registryAliases (#28772) 2024-05-02 19:03:25 +00:00
extract.ts refactor: use yaml instead of js-yaml for parsing YAML files (#31336) 2024-09-16 18:03:23 +00:00
index.ts docs(managers): add missing url and displayName (#32621) 2024-12-01 08:47:27 +00:00
readme.md docs: fix versioning links (#28341) 2024-04-11 13:23:20 +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 fix(manager/helm-values): Revert "feat(manager/helm-values): Add support for bumpVersion" (#26758) 2024-01-20 09:03:43 +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.