Contains useful notes on new learning stuff.
- Deploy ArgoCD Command:
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
- Make argocd-server accept traffic:
kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "NodePort"}}'
- Get ArgoCD Secret
username: admin
password: <value from command below>
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d && echo