mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-24 09:50:08 +00:00
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:
parent
fba25d8229
commit
6f959506ab
1 changed files with 14 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue