Skip to content

Files

Latest commit

28b34cd · Apr 28, 2024

History

History

gitops

Commands

# install ArgoCD in k8s
oc create namespace argocd
oc apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

# access ArgoCD UI
oc get svc -n argocd
oc port-forward svc/argocd-server 8080:443 -n argocd

# login with admin user and below token (as in documentation):
oc -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 --decode && echo

# you can change and delete init password

Links