Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 788 Bytes

File metadata and controls

41 lines (31 loc) · 788 Bytes

Argo CD

Alt text

Install

Add Helm repo 4 Argo

helm repo add argo https://argoproj.github.io/argo-helm
helm repo update

Install ArgoCD via Helm

helm install argocd argo/argo-cd \
  -n argocd \
  --create-namespace \
  -f microshift_install/services/argo/argo_install/argo-helm.yaml.yaml

Get the Argo CD admin password

oc get secret argocd-initial-admin-secret \
    -n argocd \
    -o jsonpath={.data.password} | base64 -d

Get 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