renovate/lib/modules/manager/helmsman
RahulGautamSingh 0151b6a4a9
refactor: reduce debug metadata (#18466)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2022-10-29 12:11:09 +00:00
..
__fixtures__ refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
__snapshots__ test: use jest v29 (#17151) 2022-08-16 14:22:29 +02:00
extract.spec.ts refactor: remove deprecated loadFixture calls (#16404) 2022-07-04 04:18:53 +00:00
extract.ts refactor: reduce debug metadata (#18466) 2022-10-29 12:11:09 +00:00
index.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01: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

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.