1. 安装 Argo CD
# 创建 ns
kubectl create namespace argocd
# 安装 argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
# 暴露 ui 端口供访问
kubectl port-forward --address 0.0.0.0 svc/argocd-server -n argocd 8080:443
# 获取登录用户 admin 密码
kubectl get pods -n argocd -l app.kubernetes.io/name=argocd-server -o name | cut -d'/' -f 2
安装完成
登录(https://IP+PORT)