docs: Argo CD installation manifest file to run test against a real cluster (#6311)

* docs: Argo CD installation manifest file to run test against a real cluster

Signed-off-by: arout <arout@redhat.com>

* Use more expressive sentence

Signed-off-by: arout <arout@redhat.com>
This commit is contained in:
Amit Rout 2021-06-11 13:13:59 +05:30 committed by GitHub
parent fba25d8229
commit 6f959506ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,20 @@ kubectl create ns argocd-e2e
kubectl -n argocd-e2e apply -f <your Argo CD installation manifests>
```
If you're going to install Argo CD using either Argo CD Operator or OpenShift GitOps Operator, you can use this manifest to install the Argo CD instance into your namespace:
```yaml
apiVersion: argoproj.io/v1alpha1
kind: ArgoCD
metadata:
name: argocd-test
namespace: argocd-e2e
spec:
server:
route:
enabled: true
```
### Give the Argo CD the appropriate RBAC permissions
```shell