renovate/lib/modules/manager/helmsman
Sebastian Poxhofer bf5eeb54da
refactor: centralize OCI detection and deletion (#28544)
2024-04-20 11:16:24 +00:00
..
__fixtures__ feat(manager/helmsman): Add OCI support (#24183) 2023-09-08 22:12:49 +00:00
__snapshots__ feat(manager/helmsman): Add OCI support (#24183) 2023-09-08 22:12:49 +00:00
extract.spec.ts feat(manager/helmsman): Add OCI support (#24183) 2023-09-08 22:12:49 +00:00
extract.ts refactor: centralize OCI detection and deletion (#28544) 2024-04-20 11:16:24 +00:00
index.ts feat(manager/helmsman): Add OCI support (#24183) 2023-09-08 22:12:49 +00:00
readme.md refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
types.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00

readme.md

The helmsman manager is currently limited and does not support the full feature set of Helmsman, read about the limitations below.

Non-configured fileMatch

By default the helmsman manager has an empty array for its fileMatch configuration option, because there is no convention for file naming in practice. This means that helmsman won't search for any files, and you won't get any updates from the manager.

To enable the helmsman manager, provide a valid fileMatch yourself, for example:

{
  "helmsman": {
    "fileMatch": ["(^|/)desired_state\\.yaml$"]
  }
}

File format

Currently, state files must be in the .yaml format. The .toml format is not supported.