renovate/lib/modules/manager/argocd
Michael Kriese b4319928f1
refactor: strict manager tests (#16155)
* refactor: strict manager tests

* chore: revert changes

* Update lib/modules/manager/gradle/extract.spec.ts
2022-06-20 17:05:39 +02:00
..
__fixtures__ feat(argocd): support applicationsets (#14496) 2022-03-14 10:31:23 +00:00
__snapshots__ refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
extract.spec.ts refactor: strict manager tests (#16155) 2022-06-20 17:05:39 +02:00
extract.ts refactor(manager): strict null checks (#15151) 2022-04-17 14:34:26 +02:00
index.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
readme.md docs: replace contain(s) with has or have (#14692) 2022-03-16 14:50:20 +01:00
types.ts feat(argocd): support applicationsets (#14496) 2022-03-14 10:31:23 +00:00
util.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00

The argocd manager has no fileMatch default patterns, so it won't match any files until you configure it with a pattern. This is because there is no commonly accepted file/directory naming convention for argocd YAML files and we don't want to check every single *.yaml file in repositories just in case any of them have ArgoCD definitions.

If most .yaml files in your repository are argocd ones, then you could add this to your config:

{
  "argocd": {
    "fileMatch": ["\\.yaml$"]
  }
}

If instead you have them all inside a argocd/ directory, you would add this:

{
  "argocd": {
    "fileMatch": ["argocd/.+\\.yaml$"]
  }
}

Or if it's just a single file then something like this:

{
  "argocd": {
    "fileMatch": ["^config/applications\\.yaml$"]
  }
}

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