github.com/argoproj/argo-cd/v3@v3.2.1/docs/user-guide/commands/argocd_admin_import.md (about)

     1  # `argocd admin import` Command Reference
     2  
     3  ## argocd admin import
     4  
     5  Import Argo CD data from stdin (specify `-') or a file
     6  
     7  ```
     8  argocd admin import SOURCE [flags]
     9  ```
    10  
    11  ### Options
    12  
    13  ```
    14        --application-namespaces strings      Comma separated list of namespace globs to which import of applications is allowed. If not provided, value from 'application.namespaces' in argocd-cmd-params-cm will be used. If it's not defined, only applications without an explicit namespace will be imported to the Argo CD namespace
    15        --applicationset-namespaces strings   Comma separated list of namespace globs which import of applicationsets is allowed. If not provided, value from 'applicationsetcontroller.namespaces' in argocd-cmd-params-cm will be used. If it's not defined, only applicationsets without an explicit namespace will be imported to the Argo CD namespace
    16        --as string                           Username to impersonate for the operation
    17        --as-group stringArray                Group to impersonate for the operation, this flag can be repeated to specify multiple groups.
    18        --as-uid string                       UID to impersonate for the operation
    19        --certificate-authority string        Path to a cert file for the certificate authority
    20        --client-certificate string           Path to a client certificate file for TLS
    21        --client-key string                   Path to a client key file for TLS
    22        --cluster string                      The name of the kubeconfig cluster to use
    23        --context string                      The name of the kubeconfig context to use
    24        --disable-compression                 If true, opt-out of response compression for all requests to the server
    25        --dry-run                             Print what will be performed
    26    -h, --help                                help for import
    27        --ignore-tracking                     Do not update the tracking annotation if the resource is already tracked
    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    -n, --namespace string                    If present, the namespace scope for this CLI request
    31        --override-on-conflict                Override the resource on conflict when updating resources
    32        --password string                     Password for basic authentication to the API server
    33        --prompts-enabled                     Force optional interactive prompts to be enabled or disabled, overriding local configuration. If not specified, the local configuration value will be used, which is false by default.
    34        --proxy-url string                    If provided, this URL will be used to connect via proxy
    35        --prune                               Prune secrets, applications and projects which do not appear in the backup
    36        --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")
    37        --server string                       The address and port of the Kubernetes API server
    38        --skip-resources-with-label string    Skip importing resources based on the label e.g. '--skip-resources-with-label my-label/example.io=true'
    39        --stop-operation                      Stop any existing operations
    40        --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.
    41        --token string                        Bearer token for authentication to the API server
    42        --user string                         The name of the kubeconfig user to use
    43        --username string                     Username for basic authentication to the API server
    44        --verbose                             Verbose output (versus only changed output)
    45  ```
    46  
    47  ### Options inherited from parent commands
    48  
    49  ```
    50        --argocd-context string           The name of the Argo-CD server context to use
    51        --auth-token string               Authentication token; set this or the ARGOCD_AUTH_TOKEN environment variable
    52        --client-crt string               Client certificate file
    53        --client-crt-key string           Client certificate key file
    54        --config string                   Path to Argo CD config (default "/home/user/.config/argocd/config")
    55        --controller-name string          Name of the Argo CD Application controller; set this or the ARGOCD_APPLICATION_CONTROLLER_NAME environment variable when the controller's name label differs from the default, for example when installing via the Helm chart (default "argocd-application-controller")
    56        --core                            If set to true then CLI talks directly to Kubernetes instead of talking to Argo CD API server
    57        --grpc-web                        Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2.
    58        --grpc-web-root-path string       Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2. Set web root.
    59    -H, --header strings                  Sets additional header to all requests made by Argo CD CLI. (Can be repeated multiple times to add multiple headers, also supports comma separated headers)
    60        --http-retry-max int              Maximum number of retries to establish http connection to Argo CD server
    61        --insecure                        Skip server certificate and domain verification
    62        --kube-context string             Directs the command to the given kube-context
    63        --logformat string                Set the logging format. One of: json|text (default "json")
    64        --loglevel string                 Set the logging level. One of: debug|info|warn|error (default "info")
    65        --plaintext                       Disable TLS
    66        --port-forward                    Connect to a random argocd-server port using port forwarding
    67        --port-forward-namespace string   Namespace name which should be used for port forwarding
    68        --redis-compress string           Enable this if the application controller is configured with redis compression enabled. (possible values: gzip, none) (default "gzip")
    69        --redis-haproxy-name string       Name of the Redis HA Proxy; set this or the ARGOCD_REDIS_HAPROXY_NAME environment variable when the HA Proxy's name label differs from the default, for example when installing via the Helm chart (default "argocd-redis-ha-haproxy")
    70        --redis-name string               Name of the Redis deployment; set this or the ARGOCD_REDIS_NAME environment variable when the Redis's name label differs from the default, for example when installing via the Helm chart (default "argocd-redis")
    71        --repo-server-name string         Name of the Argo CD Repo server; set this or the ARGOCD_REPO_SERVER_NAME environment variable when the server's name label differs from the default, for example when installing via the Helm chart (default "argocd-repo-server")
    72        --server-crt string               Server certificate file
    73        --server-name string              Name of the Argo CD API server; set this or the ARGOCD_SERVER_NAME environment variable when the server's name label differs from the default, for example when installing via the Helm chart (default "argocd-server")
    74  ```
    75  
    76  ### SEE ALSO
    77  
    78  * [argocd admin](argocd_admin.md)	 - Contains a set of commands useful for Argo CD administrators and requires direct Kubernetes access
    79