ArgoCD
https://argo-cd.readthedocs.io/en/stable/getting_started/
bash
kubectl create namespace argocd
kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
# get admin password
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d; echo
# cli
argocd login <ARGOCD_SERVER>Tools
- argo-rollouts - Progressive Delivery for Kubernetes