From 6f959506ab8acb1d220ca0b9f0e936fddbb6b277 Mon Sep 17 00:00:00 2001 From: Amit Rout Date: Fri, 11 Jun 2021 13:13:59 +0530 Subject: [PATCH] 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 * Use more expressive sentence Signed-off-by: arout --- test/remote/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/test/remote/README.md b/test/remote/README.md index 626797b591..f50447b8cc 100644 --- a/test/remote/README.md +++ b/test/remote/README.md @@ -18,6 +18,20 @@ kubectl create ns argocd-e2e kubectl -n argocd-e2e apply -f ``` +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