Add Helm repo 4 Argo
helm repo add argo https://argoproj.github.io/argo-helm
helm repo updateInstall ArgoCD via Helm
helm install argocd argo/argo-cd \
-n argocd \
--create-namespace \
-f microshift_install/services/argo/argo_install/argo-helm.yaml.yamlGet the Argo CD admin password
oc get secret argocd-initial-admin-secret \
-n argocd \
-o jsonpath={.data.password} | base64 -dGet the Argo CD URL
echo "https://$(oc get route argocd-server \
-n argocd \
-o jsonpath='{.spec.host}')"Install the bootstrap app for Argo CD
oc apply -f microshift_install/services/argo/argo_bootstrap_cluster/bootstrap-cluster.yaml