github.com/argoproj/argo-cd/v3@v3.2.1/docs/operator-manual/server-commands/argocd-applicationset-controller.md (about)

     1  # `argocd-applicationset-controller` Command Reference
     2  
     3  ## argocd-applicationset-controller
     4  
     5  Starts Argo CD ApplicationSet controller
     6  
     7  ```
     8  argocd-applicationset-controller [flags]
     9  ```
    10  
    11  ### Options
    12  
    13  ```
    14        --allowed-scm-providers strings           The list of allowed custom SCM provider API URLs. This restriction does not apply to SCM or PR generators which do not accept a custom API URL. (Default: Empty = all)
    15        --applicationset-namespaces strings       Argo CD applicationset namespaces
    16        --argocd-repo-server string               Argo CD repo server address (default "argocd-repo-server:8081")
    17        --as string                               Username to impersonate for the operation
    18        --as-group stringArray                    Group to impersonate for the operation, this flag can be repeated to specify multiple groups.
    19        --as-uid string                           UID to impersonate for the operation
    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        --concurrent-reconciliations int          Max concurrent reconciliations limit for the controller (default 10)
    25        --context string                          The name of the kubeconfig context to use
    26        --debug                                   Print debug logs. Takes precedence over loglevel
    27        --disable-compression                     If true, opt-out of response compression for all requests to the server
    28        --dry-run                                 Enable dry run mode
    29        --enable-github-api-metrics               Enable GitHub API metrics for generators that use the GitHub API
    30        --enable-leader-election                  Enable leader election for controller manager. Enabling this will ensure there is only one active controller manager.
    31        --enable-new-git-file-globbing            Enable new globbing in Git files generator.
    32        --enable-policy-override                  For security reason if 'policy' is set, it is not possible to override it at applicationSet level. 'allow-policy-override' allows user to define their own policy (default true)
    33        --enable-progressive-syncs                Enable use of the experimental progressive syncs feature.
    34        --enable-scm-providers                    Enable retrieving information from SCM providers, used by the SCM and PR generators (Default: true) (default true)
    35    -h, --help                                    help for argocd-applicationset-controller
    36        --insecure-skip-tls-verify                If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure
    37        --kubeconfig string                       Path to a kube config. Only required if out-of-cluster
    38        --logformat string                        Set the logging format. One of: json|text (default "json")
    39        --loglevel string                         Set the logging level. One of: debug|info|warn|error (default "info")
    40        --max-resources-status-count int          Max number of resources stored in appset status.
    41        --metrics-addr string                     The address the metric endpoint binds to. (default ":8080")
    42        --metrics-applicationset-labels strings   List of Application labels that will be added to the argocd_applicationset_labels metric
    43    -n, --namespace string                        If present, the namespace scope for this CLI request
    44        --password string                         Password for basic authentication to the API server
    45        --policy string                           Modify how application is synced between the generator and the cluster. Default is '' (empty), which means AppSets default to 'sync', but they may override that default. Setting an explicit value prevents AppSet-level overrides, unless --allow-policy-override is enabled. Explicit options are: 'sync' (create & update & delete), 'create-only', 'create-update' (no deletion), 'create-delete' (no update)
    46        --preserved-annotations strings           Sets global preserved field values for annotations
    47        --preserved-labels strings                Sets global preserved field values for labels
    48        --probe-addr string                       The address the probe endpoint binds to. (default ":8081")
    49        --proxy-url string                        If provided, this URL will be used to connect via proxy
    50        --repo-server-plaintext                   Disable TLS on connections to repo server
    51        --repo-server-strict-tls                  Whether to use strict validation of the TLS cert presented by the repo server
    52        --repo-server-timeout-seconds int         Repo server RPC call timeout seconds. (default 60)
    53        --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")
    54        --scm-root-ca-path string                 Provide Root CA Path for self-signed TLS Certificates
    55        --server string                           The address and port of the Kubernetes API server
    56        --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.
    57        --token string                            Bearer token for authentication to the API server
    58        --token-ref-strict-mode                   Set to true to require secrets referenced by SCM providers to have the argocd.argoproj.io/secret-type=scm-creds label set (Default: false)
    59        --user string                             The name of the kubeconfig user to use
    60        --username string                         Username for basic authentication to the API server
    61        --webhook-addr string                     The address the webhook endpoint binds to. (default ":7000")
    62        --webhook-parallelism-limit int           Number of webhook requests processed concurrently (default 50)
    63  ```
    64