renovate/lib/modules/manager/helmfile
Philip ad64f11af4
fix(helmfile): url joiner is broken, use upath instead (#31008)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2024-08-27 13:31:34 +00:00
..
__fixtures__ fix(helmfile): make resolving deps in multi-doc files more stable (#26078) 2023-12-05 09:28:27 +00:00
__snapshots__ refactor(manager/helmfile): use schema for yaml parsing (#27539) 2024-03-15 21:58:19 +00:00
artifacts.spec.ts fix(helmfile): remove templates before running updating artifacts (#30139) 2024-07-12 07:24:37 +00:00
artifacts.ts fix(helmfile): remove templates before running updating artifacts (#30139) 2024-07-12 07:24:37 +00:00
extract.spec.ts fix(helmfile): url joiner is broken, use upath instead (#31008) 2024-08-27 13:31:34 +00:00
extract.ts fix(helmfile): url joiner is broken, use upath instead (#31008) 2024-08-27 13:31:34 +00:00
index.ts feat(helmfile): support optional `.gotmpl` extension (#23176) (#26063) 2023-12-01 05:03:32 +00:00
readme.md docs: fix versioning links (#28341) 2024-04-11 13:23:20 +00:00
schema.ts refactor(manager/helmfile): use schema for yaml parsing (#27539) 2024-03-15 21:58:19 +00:00
utils.ts refactor(prettier): Force trailing commas (#25631) 2023-11-07 15:50:29 +00:00

readme.md

Checks helmfile.yaml files and extracts dependencies for the helm datasource.

The helmfile manager defines this default registryAlias:

{
  "registryAliases": {
    "stable": "https://charts.helm.sh/stable"
  }
}

If your Helm charts make use of repository aliases then you will need to configure an registryAliases object in your config to tell Renovate where to look for them. Be aware that alias values must be properly formatted URIs.

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

Private repositories and registries

To use private sources of Helm charts, you must set the password and username you use to authenticate to the private source. For this you use a custom hostRules array.

OCI registries

{
  hostRules: [
    {
      // global login
      matchHost: 'ghcr.io',
      hostType: 'docker',
      username: '<some-username>',
      password: '<some-password>',
    },
    {
      // login with encrypted password
      matchHost: 'https://ghci.io',
      hostType: 'docker',
      username: '<some-username>',
      encrypted: {
        password: 'some-encrypted-password',
      },
    },
  ],
}