github.com/argoproj/argo-cd@v1.8.7/docs/operator-manual/server-commands/argocd-application-controller.md (about)

     1  ## argocd-application-controller
     2  
     3  Run ArgoCD Application Controller
     4  
     5  ### Synopsis
     6  
     7  ArgoCD application controller is a Kubernetes controller that continuously monitors running applications and compares the current, live state against the desired target state (as specified in the repo). This command runs Application Controller in the foreground.  It can be configured by following options.
     8  
     9  ```
    10  argocd-application-controller [flags]
    11  ```
    12  
    13  ### Options
    14  
    15  ```
    16        --app-resync int                        Time period in seconds for application resync. (default 180)
    17        --app-state-cache-expiration duration   Cache expiration for app state (default 1h0m0s)
    18        --as string                             Username to impersonate for the operation
    19        --as-group stringArray                  Group to impersonate for the operation, this flag can be repeated to specify multiple groups.
    20        --certificate-authority string          Path to a cert file for the certificate authority
    21        --client-certificate string             Path to a client certificate file for TLS
    22        --client-key string                     Path to a client key file for TLS
    23        --cluster string                        The name of the kubeconfig cluster to use
    24        --context string                        The name of the kubeconfig context to use
    25        --default-cache-expiration duration     Cache expiration default (default 24h0m0s)
    26        --gloglevel int                         Set the glog logging level
    27    -h, --help                                  help for argocd-application-controller
    28        --insecure-skip-tls-verify              If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure
    29        --kubeconfig string                     Path to a kube config. Only required if out-of-cluster
    30        --kubectl-parallelism-limit int         Number of allowed concurrent kubectl fork/execs. Any value less the 1 means no limit. (default 20)
    31        --logformat string                      Set the logging format. One of: text|json (default "text")
    32        --loglevel string                       Set the logging level. One of: debug|info|warn|error (default "info")
    33        --metrics-port int                      Start metrics server on given port (default 8082)
    34    -n, --namespace string                      If present, the namespace scope for this CLI request
    35        --operation-processors int              Number of application operation processors (default 1)
    36        --password string                       Password for basic authentication to the API server
    37        --redis string                          Redis server hostname and port (e.g. argocd-redis:6379). 
    38        --redisdb int                           Redis database.
    39        --repo-server string                    Repo server address. (default "argocd-repo-server:8081")
    40        --repo-server-timeout-seconds int       Repo server RPC call timeout seconds. (default 60)
    41        --request-timeout string                The length of time to wait before giving up on a single server request. Non-zero values should contain a corresponding time unit (e.g. 1s, 2m, 3h). A value of zero means don't timeout requests. (default "0")
    42        --self-heal-timeout-seconds int         Specifies timeout between application self heal attempts (default 5)
    43        --sentinel stringArray                  Redis sentinel hostname and port (e.g. argocd-redis-ha-announce-0:6379). 
    44        --sentinelmaster string                 Redis sentinel master group name. (default "master")
    45        --server string                         The address and port of the Kubernetes API server
    46        --status-processors int                 Number of application status processors (default 1)
    47        --tls-server-name string                If provided, this name will be used to validate server certificate. If this is not provided, hostname used to contact the server is used.
    48        --token string                          Bearer token for authentication to the API server
    49        --user string                           The name of the kubeconfig user to use
    50        --username string                       Username for basic authentication to the API server
    51  ```
    52