github.com/argoproj/argo-cd/v3@v3.2.1/manifests/README.md (about)

     1  # Argo CD Installation Manifests
     2  
     3  Four sets of installation manifests are provided:
     4  
     5  ## Normal Installation:
     6  
     7  * [install.yaml](install.yaml) - Standard Argo CD installation with cluster-admin access. Use this
     8    manifest set if you plan to use Argo CD to deploy applications in the same cluster that Argo CD runs
     9    in (i.e. kubernetes.default.svc). Will still be able to deploy to external clusters with inputted
    10    credentials.
    11  
    12  * [namespace-install.yaml](namespace-install.yaml) - Installation of Argo CD which requires only
    13    namespace level privileges (does not need cluster roles). Use this manifest set if you do not
    14    need Argo CD to deploy applications in the same cluster that Argo CD runs in, and will rely solely
    15    on inputted cluster credentials. An example of using this set of manifests is if you run several
    16    Argo CD instances for different teams, where each instance will be deploying applications to
    17    external clusters. Will still be possible to deploy to the same cluster (kubernetes.default.svc)
    18    with inputted credentials (i.e. `argocd cluster add <CONTEXT> --in-cluster --namespace <YOUR NAMESPACE>`).
    19  
    20    > Note: Argo CD CRDs are not included into [namespace-install.yaml](namespace-install.yaml).
    21    > and have to be installed separately. The CRD manifests are located in [manifests/crds](./crds) directory.
    22    > Use the following command to install them:
    23    > ```bash
    24    > kubectl apply -k https://github.com/argoproj/argo-cd/manifests/crds\?ref\=stable
    25    > ```
    26  
    27  ## High Availability:
    28  
    29  * [ha/install.yaml](ha/install.yaml) - the same as install.yaml but with multiple replicas for
    30    supported components.
    31  
    32  * [ha/namespace-install.yaml](ha/namespace-install.yaml) - the same as namespace-install.yaml but
    33    with multiple replicas for supported components.