github.com/argoproj/argo-cd@v1.8.7/docs/user-guide/commands/argocd_proj_create.md (about)

     1  ## argocd proj create
     2  
     3  Create a project
     4  
     5  ### Synopsis
     6  
     7  Create a project
     8  
     9  ```
    10  argocd proj create PROJECT [flags]
    11  ```
    12  
    13  ### Options
    14  
    15  ```
    16        --description string        Project description
    17    -d, --dest stringArray          Permitted destination server and namespace (e.g. https://192.168.99.100:8443,default)
    18    -f, --file string               Filename or URL to Kubernetes manifests for the project
    19    -h, --help                      help for create
    20        --orphaned-resources        Enables orphaned resources monitoring
    21        --orphaned-resources-warn   Specifies if applications should be a warning condition when orphaned resources detected
    22        --signature-keys strings    GnuPG public key IDs for commit signature verification
    23    -s, --src stringArray           Permitted source repository URL
    24        --upsert                    Allows to override a project with the same name even if supplied project spec is different from existing spec
    25  ```
    26  
    27  ### Options inherited from parent commands
    28  
    29  ```
    30        --auth-token string               Authentication token
    31        --client-crt string               Client certificate file
    32        --client-crt-key string           Client certificate key file
    33        --config string                   Path to Argo CD config (default "/home/user/.argocd/config")
    34        --grpc-web                        Enables gRPC-web protocol. Useful if Argo CD server is behind proxy which does not support HTTP2.
    35        --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.
    36    -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)
    37        --insecure                        Skip server certificate and domain verification
    38        --logformat string                Set the logging format. One of: text|json (default "text")
    39        --loglevel string                 Set the logging level. One of: debug|info|warn|error (default "info")
    40        --plaintext                       Disable TLS
    41        --port-forward                    Connect to a random argocd-server port using port forwarding
    42        --port-forward-namespace string   Namespace name which should be used for port forwarding
    43        --server string                   Argo CD server address
    44        --server-crt string               Server certificate file
    45  ```
    46  
    47  ### SEE ALSO
    48  
    49  * [argocd proj](argocd_proj.md)	 - Manage projects
    50