renovate/lib/modules/manager/helmfile
Sebastian Poxhofer 19259a0383 feat!: categories (#16534)
Closes #13953

Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

BREAKING CHANGE: languages are now called categories instead
2023-07-04 19:21:52 +02:00
..
__fixtures__ fix(manager/helmfile): Use helmfile relative path (#21591) 2023-04-24 08:22:52 +00:00
__snapshots__ feat(manager/helmfile): Detect kustomization.yaml (#21111) 2023-04-12 11:49:23 +00:00
artifacts.spec.ts feat!: remove BUILDPACK env support 2023-07-04 19:21:52 +02:00
artifacts.ts feat(manager/helmfile): use the specific helmfile version that specified in the helmfile.lock. (#22904) 2023-06-21 12:35:04 +00:00
extract.spec.ts refactor: Default values for GlobalConfig.get (#22967) 2023-06-25 19:34:42 +00:00
extract.ts fix(manager): unify logging (#22398) 2023-05-25 16:53:05 +00:00
index.ts feat!: categories (#16534) 2023-07-04 19:21:52 +02:00
readme.md feat(manager/helmfile): support helm registry login when updating helmfile.lock (#22494) 2023-06-19 05:35:54 +00:00
schema.ts feat(manager/helmfile): use the specific helmfile version that specified in the helmfile.lock. (#22904) 2023-06-21 12:35:04 +00:00
types.ts feat(manager/helmfile): use the specific helmfile version that specified in the helmfile.lock. (#22904) 2023-06-21 12:35:04 +00:00
utils.ts feat(manager/helmfile): use the specific helmfile version that specified in the helmfile.lock. (#22904) 2023-06-21 12:35:04 +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',
      },
    },
  ],
}