renovate/lib/modules/manager/argocd
HonkingGoose b08fa0cf8b
docs: drop weasel words (#22165)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
2023-05-29 08:20:40 +00:00
..
__fixtures__ feat(manager/argocd): added support for argocd multisource (#20648) 2023-03-19 08:41:12 +00:00
extract.spec.ts feat(manager/argocd): added support for argocd multisource (#20648) 2023-03-19 08:41:12 +00:00
extract.ts fix(manager): unify logging (#22398) 2023-05-25 16:53:05 +00:00
index.ts feat(manager/argocd): add oci helm support (#18185) 2022-10-10 13:32:31 +00:00
readme.md docs: drop weasel words (#22165) 2023-05-29 08:20:40 +00:00
types.ts feat(manager/argocd): added support for argocd multisource (#20648) 2023-03-19 08:41:12 +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 only 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.