Is there a way to set default values for helmfile command arguments using the helmfile.yaml itself? I can't find anything about it in the documentation.
Ej: If, in my case, I always want to pass the --skip-refresh or --quiet arguments to the helmfile command, set it directly to the helmfile file:
helmfileArgs:
skipRefresh: true
quiet: true
repositories:
- ...
releases:
- ...