0
0
mirror of https://github.com/renovatebot/renovate.git synced 2024-12-22 13:38:32 +00:00
renovatebot_renovate/lib/modules/manager/helmfile
2024-12-22 10:14:53 +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): lock update for multidoc YAML (#31698) 2024-10-03 08:35:35 +00:00
artifacts.ts fix(helmfile): lock update for multidoc YAML (#31698) 2024-10-03 08:35:35 +00:00
extract.spec.ts feat(manager/helmfile): allow forward slashes in OCI chart names (#33162) 2024-12-22 10:14:53 +00:00
extract.ts feat(manager/helmfile): allow forward slashes in OCI chart names (#33162) 2024-12-22 10:14:53 +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
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

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',
      },
    },
  ],
}