GitOps Operator = Red Hat's version of ArgoCD
Create the operator by applying the subscription.yaml
kubectl apply -f subscription.yaml
kubectl apply -f argocd-repository.yaml
kubectl apply -f argo-apps/
To watch what's happening you can open ArgoCD's user interface. You can get the ArgoCD UI URL by executing the extraction command below. This works on OpenShift only.
oc get route/openshift-gitops-server -n openshift-gitops -o jsonpath='{ .spec.host }{"\n"}'
username: admin
Extract the password
kubectl extract secret/openshift-gitops-cluster -n openshift-gitops --keys=admin.password --to=-