1. 安裝 Argo CD
# 創(chuàng)建 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)
2. 使用 Argo CD
2.1 準(zhǔn)備 github 倉庫(文末有鏈接地址)
2.2配置 argocd
2.3 點擊 SYNC 進(jìn)行部署
2.4 部署完成