renovate/lib/modules/manager/argocd
Sebastian Poxhofer d74ba704fd
refactor: use yaml instead of js-yaml for parsing YAML files (#31336)
2024-09-16 18:03:23 +00:00
..
__fixtures__ feat(manager/argocd): Add support for Kustomize image overrides (#27670) 2024-07-25 18:33:51 +00:00
extract.spec.ts feat(manager/argocd): Add support for Kustomize image overrides (#27670) 2024-07-25 18:33:51 +00:00
extract.ts refactor: use yaml instead of js-yaml for parsing YAML files (#31336) 2024-09-16 18:03:23 +00:00
index.ts feat!: categories (#16534) 2023-07-04 19:21:52 +02:00
readme.md docs: fix versioning links (#28341) 2024-04-11 13:23:20 +00:00
schema.ts feat(manager/argocd): Add support for Kustomize image overrides (#27670) 2024-07-25 18:33:51 +00:00
util.ts refactor(prettier): Force trailing commas (#25631) 2023-11-07 15:50:29 +00:00

readme.md

To use the argocd manager you must set your own fileMatch pattern. The argocd manager has no default fileMatch pattern, because there is no common filename or directory name convention for Argo CD YAML files. By setting your own fileMatch Renovate avoids having to check each *.yaml file in a repository for a Argo CD definition.

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

Some configuration examples:

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