I'm using ArgoCD and I want to track files under different subdirectories. I've setted the path as ./root_directory, but I would like to track also files in the subdirectories of root_directory. For instance /root_directory/dir1, /root_directory/dir2, but also /root_directory/dir1/dir1.1 ecc.. How can I do that?
Thanks for your help
If you want to set up an ArgoCD Application to recursively go through directories there is an option for that configuration.
There is a checkbox in the UI for recursive and/or if you are doing it declaratively then you can see the CRD https://argoproj.github.io/argo-cd/operator-manual/application.yaml has the spec.source.directory.recurse option.