github.com/argoproj/argo-cd/v2@v2.10.9/docs/operator-manual/server-commands/additional-configuration-method.md (about)

     1  ## Additional configuration methods
     2  
     3  Additional configuration methods for configuring commands `argocd-server`, `argocd-repo-server` and `argocd-application-controller`.
     4  
     5  
     6  ### Synopsis
     7  
     8  The commands can also be configured by setting the respective flag of the available options in `argocd-cmd-params-cm.yaml`. Each component has a specific prefix associated with it.
     9  
    10  ```
    11  argocd-server                 --> server
    12  argocd-repo-server            --> reposerver
    13  argocd-application-controller --> controller
    14  ```
    15  
    16  The flags that do not have a prefix are shared across multiple components. One such flag is `repo.server`
    17  The list of flags that are available can be found in [argocd-cmd-params-cm.yaml](../argocd-cmd-params-cm.yaml) 
    18  
    19  
    20  ### Example
    21  
    22  To set `logformat` of `argocd-application-controller`, add below entry to the config map `argocd-cmd-params-cm.yaml`.
    23  
    24  ```
    25  data:
    26      controller.log.format: "text"
    27  ```
    28